.live-webinar-page {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f8f9fa;
    min-height: 100vh;
    padding: 10px 20px 40px;
}
        

        

        /* Header Section */
        .header-section {
            margin-bottom: 10px;
        }

        .page-title {
            font-size: 42px;
            font-weight: 700;
            color: #0d6efd;
            margin-bottom: 10px;
            text-align: center;
        }

        /* Search and Filter Bar */
        .search-filter-wrapper {
            display: flex;
            gap: 15px;
            margin-bottom: 30px;
            flex-wrap: wrap;
            align-items: center;
        }

        /* ===== LIVE WEBINAR SEARCH - BLUE GRADIENT ===== */

.top-bar .page-search-box{
    position:relative;
    width:100%;
    max-width:480px;
}

.top-bar .page-search-box input{
    width:100%;
    height:46px;
    padding:0 50px 0 50px;
    border:2px solid transparent;
    border-radius:23px;
    font-size:14px;
    background:linear-gradient(white, white) padding-box,
               linear-gradient(135deg, #3b82f6 0%, #2563eb 100%) border-box;
    transition:.3s;
    font-weight:500;
    box-shadow:0 4px 12px rgba(59, 130, 246, 0.2);
}

.top-bar .page-search-box input:focus{
    outline:none;
    background:linear-gradient(white, white) padding-box,
               linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%) border-box;
    box-shadow:0 6px 20px rgba(37, 99, 235, 0.35);
    transform:translateY(-1px);
}

.top-bar .page-search-box input::placeholder{
    color:#94a3b8;
}

.top-bar .page-search-box i{
    position:absolute;
    left:18px;
    top:50%;
    transform:translateY(-50%);
    font-size:18px;
    background:linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    background-clip:text;
    transition:.3s;
}

.top-bar .page-search-box:hover input{
    box-shadow:0 5px 16px rgba(59, 130, 246, 0.3);
}

.top-bar .page-search-box input:focus ~ i{
    transform:translateY(-50%) scale(1.1) rotate(90deg);
}

        .filter-btn {
            background: #0d6efd;
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .filter-btn:hover {
            background: #0a58ca;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
            color: white;
        }

        /* Filter Panel */
        .filter-panel {
            background: white;
            border-radius: 12px;
            padding: 25px;
            margin-bottom: 30px;
            border-left: 5px solid #0d6efd;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            display: none;
        }

        .filter-panel.active {
            display: block;
            animation: slideDown 0.3s ease;
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .filter-group {
            margin-bottom: 25px;
        }

        .filter-group:last-child {
            margin-bottom: 0;
        }

        .filter-group h6 {
            color: #0d6efd;
            font-weight: 700;
            margin-bottom: 12px;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .filter-group label {
            display: block;
            margin-bottom: 8px;
            font-size: 13px;
            color: #333;
            cursor: pointer;
            transition: color 0.2s;
        }

        .filter-group label:hover {
            color: #0d6efd;
        }

        .filter-group input[type="checkbox"],
        .filter-group input[type="radio"] {
            margin-right: 8px;
            cursor: pointer;
            accent-color: #0d6efd;
        }

        /* Webinar List */
        .webinar-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
            gap: 0;
        }

        .webinar-row {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-bottom: 25px;
            align-items: stretch;
        }

        .webinar-row.single {
            grid-template-columns: 1fr;
        }

        @media (max-width: 768px) {
            .webinar-row {
                grid-template-columns: 1fr;
            }
        }

        /* Webinar Item - List Style */
        .webinar-item {
            background: white;
            border-radius: 10px;
            padding: 0;
            box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            display: flex;
            align-items: stretch;
            overflow: hidden;
            height:100%;
        }

        .webinar-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(13, 110, 253, 0.15);
        }

        /* Left Date Box */
        .webinar-date-box {
            background: #0d6efd;
            color: white;
            padding: 18px 14px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            min-width: 80px;
        }

        .webinar-date-box .date-number {
            font-size: 34px;
            font-weight: 700;
            line-height: 1;
            margin-bottom: 5px;
        }

        .webinar-date-box .date-month {
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 8px;
        }

        .webinar-date-box .time-left {
            background: rgba(255, 255, 255, 0.2);
            padding: 8px 12px;
            border-radius: 6px;
            font-size: 12px;
            font-weight: 700;
            line-height: 1.4;
        }

        /* Main Content Area */
        .webinar-content {
            flex: 1;
            padding: 18px;
            display: flex;
            flex-direction: column;
            min-width: 0;
        }

        /* Webinar Title */
        .webinar-title {
            font-size: 16px;
            font-weight: 700;
            color: #212529;
            margin-bottom: 10px;

            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;

            width: 100%;
            max-width: 100%;
        }


        /* Instructor and Details */
        .instructor-details-wrapper {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin-bottom: 10px;
            padding-bottom: 10px;
            border-bottom: 1px solid #e9ecef;
        }

        .instructor-image {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            border: 2px solid #0d6efd;
            
        }

        .instructor-info {
            flex: 1;
        }

        .instructor-info h6 {
            font-size: 14px;
            font-weight: 700;
            color: #212529;
            margin-bottom: 3px;
            margin: 0;
        }

        .instructor-profession {
            font-size: 12px;
            color: #6c757d;
            margin: 0;
            margin-bottom: 8px;
        }

        /* Time and Duration Details */
        .time-duration-details {
            display: flex;
            align-items: center;
            gap: 15px;
            flex-wrap: wrap;
            font-size: 15px;
            color: #495057;
        }

        .time-detail {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .time-detail i {
            color: #0d6efd;
            font-size: 16px;
            width: 16px;
            text-align: center;
        }

        .time-zones {
            display: flex;
            align-items: center;
            gap: 6px;
            font-weight: 600;
            color: #0d6efd;
        }

        .duration {
            display: flex;
            align-items: center;
            gap: 6px;
            font-weight: 600;
            color: #0d6efd;
        }

        .separator {
            color: #dee2e6;
        }

        /* Footer with Price and Button */
        .webinar-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 15px;
            margin-top: auto;
            padding-top: 0px;
        }

        .price-tag {
            font-size: 20px;
            font-weight: 700;
            color: #0d6efd;
        }

        .price-tag.free {
            color: #198754;
            font-size: 16px;
            font-weight: 700;
            background: #d1e7dd;
            padding: 6px 12px;
            border-radius: 6px;
        }

        .enroll-btn {
            background: #0d6efd;
            color: white;
            border: none;
            padding: 8px 18px;
            border-radius: 50px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 13px;
            white-space: nowrap;
            flex-shrink: 0;
        }

        .enroll-btn:hover {
            background: #0a58ca;
            transform: translateX(3px);
            color: white;
            text-decoration: none;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .webinar-item {
                flex-direction: column;
            }

            .webinar-date-box {
                flex-direction: row;
                align-items: center;
                justify-content: center;
                gap: 10px;
            }

            .webinar-date-box .date-number {
                font-size: 36px;
                margin-right: 20px;
                margin-bottom: 0;
            }

            .webinar-date-box .date-month {
                display: block;
                font-size: 12px;
                font-weight: 600;
                margin-left: 8px;
            }

            .webinar-content {
                padding: 20px;
            }

            .webinar-footer {
                flex-direction: column;
                align-items: flex-start;
            }

            .enroll-btn {
                width: 100%;
                text-align: center;
            }
        }

        @media (max-width: 576px) {
            .page-title {
                font-size: 28px;
            }

            .search-filter-wrapper {
                flex-direction: column;
            }

            .page-search-box {
                min-width: 100%;
            }

            .filter-btn {
                width: 100%;
                justify-content: center;
            }

            .webinar-title {
                font-size: 16px;
            }

            .time-duration-details {
                font-size: 12px;
            }

            .price-tag {
                font-size: 20px;
            }
        }
   

/* ===== TOP BAR SINGLE ROW ===== */

/* ===== TOP BAR LAYOUT ===== */

.top-bar{
    display:flex;
    align-items:center;
    gap:16px;
    margin-bottom:20px;
}

/* title */
.top-bar .page-title{
    flex:0 0 auto;
    font-size:26px;
    white-space:nowrap;
}

/* search */
.top-bar .page-search-box{
    flex:0 0 500px;
    max-width:500px;
}

/* pagination gets remaining space */
.top-pagination{
    flex:1;
    display:flex;
    align-items:center;
    gap:8px;
    overflow:hidden;
    flex-wrap:wrap;
}

/* filter button */
.filter-btn{
    flex:0 0 auto;
}
.top-pagination a,
.top-pagination span{
    font-size:15px;
    padding:4px 6px;
    white-space:nowrap;
}

.top-pagination .meta{
    color:#6c757d;
    margin-left:6px;
}

@media(max-width:1100px){
    .top-bar{
        flex-wrap:wrap;
    }

    .top-bar .page-search-box{
        flex:1 1 100%;
        max-width:100%;
        order:2;
    }

    .top-pagination{
        order:3;
        width:100%;
    }
}



@media(max-width:1200px){
    .top-bar .page-search-box{
        flex:0 0 320px;
        max-width:320px;
    }
}

/* mobile */
/* @media(max-width:768px){
    .top-bar{
        flex-direction:column;
        align-items:stretch;
    }

    .top-bar .page-title{
        text-align:center;
    }
} */

.per-page-form select{
    padding:4px 6px;
    border-radius:6px;
    border:1px solid #dee2e6;
    font-size:13px;
    background:white;
    cursor:pointer;
}

.per-page-form{
    margin-left:auto; /* push to right end */
}
