/* ==========================================================================
   My Account Dashboard: Active Courses & Zoom Hub
   ========================================================================== */
.extra-recommended-title,
.extra-courses-title {
    font-size: 28px !important;
    color: #2C2C2C;
    text-align: center;
    margin-bottom: 22px;
}

/* Zoom Lesson Banner styling */
.extra-zoom-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 20px;
    padding: 20px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    margin: 0 auto 35px auto;
    gap: 20px;
    max-width: 600px;
}

.extra-zoom-banner-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.extra-zoom-icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #FFF0ED;
    border-radius: 50%;
    flex-shrink: 0;
}

.extra-zoom-icon-circle svg {
    color: #F15A48;
}

.extra-zoom-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.extra-zoom-subtitle {
    font-size: 16px;
    font-weight: bold;
    color: #1a1a1a;
}

.extra-zoom-meta {
    font-size: 13px;
    color: #777;
}

.extra-zoom-join-btn {
    background-color: #F15A48;
    color: #ffffff !important;
    border: 1px solid #F15A48;
    border-radius: 12px;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    box-shadow: 0 4px 6px rgba(241, 90, 72, 0.2);
}

.extra-zoom-join-btn:hover {
    background-color: #ffffff;
    color: #F15A48 !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* Course Grid and Cards styling */
.extra-courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
    justify-content: center;
}

.extra-course-card {
    background: #ffffff;
    border: 1px solid #f2f2f2;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.extra-course-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.05);
}

.extra-course-card-top {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    align-items: center;
}

.extra-course-image-wrapper {
    width: 80px;
    height: 80px;
    background: #fafafa;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.extra-course-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.extra-course-info-wrapper {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    position: relative;
}

.extra-course-badge-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.extra-course-category {
    font-size: 13px;
    color: #888;
    font-weight: 500;
}

.extra-course-badge {
    font-size: 11px;
    font-weight: bold;
    padding: 4px 12px;
    border-radius: 20px;
    line-height: 1;
}

.extra-course-badge.active {
    background-color: #E2F6EC;
    color: #10B981;
}

.extra-course-badge.new {
    background-color: #FFF2E6;
    color: #F59E0B;
}

.extra-course-badge.completed {
    background-color: #F3F4F6;
    color: #6B7280;
}

.extra-course-title {
    font-size: 18px;
    font-weight: bold;
    color: #1a1a1a;
    line-height: 1.3;
    margin: 0 0 8px 0;
    text-align: right;
}

.extra-course-date-row {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #666;
}

.extra-course-date-row svg {
    color: #F15A48;
    flex-shrink: 0;
}

/* Progress bar styling */
.extra-course-progress-container {
    margin-top: auto;
    padding-top: 15px;
}

.extra-course-progress-bar {
    height: 6px;
    background: #E5E7EB;
    border-radius: 3px;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.extra-course-progress-fill {
    height: 100%;
    background: #F15A48;
    border-radius: 3px;
    transition: width 0.3s ease;
}

.extra-course-progress-labels {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #666;
    margin-top: 6px;
}

/* Footer / Action row */
.extra-course-footer-row {
    margin-top: 15px;
    display: flex;
    justify-content: flex-start;
}

.extra-course-details-btn {
    background-color: #F15A48;
    color: #ffffff !important;
    border: 1px solid #F15A48;
    border-radius: 12px;
    padding: 8px 18px;
    font-size: 13px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    box-shadow: 0 4px 6px rgba(241, 90, 72, 0.15);
}

.extra-course-details-btn:hover {
    background-color: #ffffff;
    color: #F15A48 !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .extra-zoom-banner {
        flex-direction: column;
        align-items: stretch;
        padding: 20px;
        text-align: center;
    }

    .extra-zoom-banner-right {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .extra-zoom-info {
        align-items: center;
    }

    .extra-zoom-join-btn {
        width: 100%;
    }

    .extra-course-card {
        padding: 15px;
    }
}

/* ==========================================================================
   My Account Dashboard: Recommended Courses Section
   ========================================================================== */
.extra-recommended-section {
    margin-top: 80px;
    text-align: right;
}

.extra-recommended-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
    justify-content: center;
}

.extra-recommend-card {
    background: #ffffff;
    border: 1px solid #f2f2f2;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.extra-recommend-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.05);
}

.extra-recommend-badge-row {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 12px;
}

.extra-recommend-badge {
    font-size: 11px;
    font-weight: bold;
    padding: 4px 14px;
    background-color: #FFF2E6;
    color: #F59E0B;
    border-radius: 20px;
    border: 1px solid rgba(245, 158, 11, 0.15);
}

.extra-recommend-middle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.extra-recommend-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.extra-recommend-title {
    font-size: 18px;
    font-weight: bold;
    color: #1a1a1a;
    line-height: 1.3;
    margin: 0 0 6px 0;
}

.extra-recommend-category {
    font-size: 13px;
    color: #888;
    margin-bottom: 8px;
    font-weight: 500;
}

.extra-recommend-subtext {
    font-size: 11px;
    color: #777;
    line-height: 1.4;
}

.extra-recommend-image-wrapper {
    width: 65px;
    height: 65px;
    background: #FFF9E6;
    /* Light yellow background */
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.extra-recommend-image-wrapper img {
    width: 80%;
    height: 80%;
    object-fit: contain;
}

.extra-recommend-footer {
    margin-top: auto;
    display: flex;
    justify-content: flex-start;
}

.extra-recommend-buy-btn {
    background-color: #F15A48;
    color: #ffffff !important;
    border: 1px solid #F15A48;
    border-radius: 12px;
    padding: 8px 22px;
    font-size: 13px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    box-shadow: 0 4px 6px rgba(241, 90, 72, 0.15);
}

.extra-recommend-buy-btn:hover {
    background-color: #ffffff;
    color: #F15A48 !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
    .extra-recommend-card {
        padding: 15px;
    }
}

/* ==========================================================================
   My Account: My Courses Endpoint Page
   ========================================================================== */
.extra-my-courses-header {
    margin-bottom: 30px;
    direction: rtl;
    text-align: right;
}

.extra-my-courses-header h2 {
    font-size: 42px !important;
    color: #2C2C2C;
    margin: 0 0 8px 0;
}

.extra-my-courses-header p {
    font-size: 14px;
    color: #888;
    margin: 0;
}

/* Stats counter grid */
.extra-courses-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 32px !important;
}

.extra-stat-box {
    background: #F0F0F0;
    border: none;
    border-radius: 20px;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.08);
}

.extra-stat-left {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: right;
}

.extra-stat-label {
    font-size: 13px;
    color: #777;
    font-weight: 500;
}

.extra-stat-number {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1;
}

.extra-stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    width: 48px;
    height: 48px;
}

.extra-stat-icon .green-dot {
    width: 22px;
    height: 22px;
    background: radial-gradient(circle, #10B981 0%, #059669 100%);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.6);
}

/* White Table Container */
.extra-courses-table-container {
    background: #ffffff;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.08);
}

/* Search Box wrapper */
.extra-courses-search-bar {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 25px;
}

.extra-search-wrapper {
    position: relative;
    max-width: 320px;
    width: 100%;
}

.extra-search-wrapper input {
    width: 100%;
    height: 46px;
    background: #F0F0F0 !important;
    border: none !important;
    border-radius: 14px !important;
    padding: 0 45px 0 20px !important;
    font-size: 14px !important;
    color: #1a1a1a !important;
    outline: none !important;
    transition: all 0.2s ease;
    text-align: right;
    box-shadow: none !important;
}

.extra-search-wrapper input::placeholder {
    color: #9ca3af;
}

.extra-search-wrapper input:focus {
    background: #ffffff !important;
    border-color: #F15A48 !important;
    box-shadow: 0 0 0 3px rgba(241, 90, 72, 0.15) !important;
}

.extra-search-wrapper .search-icon {
    position: absolute;
    top: 50%;
    right: 18px;
    transform: translateY(-50%);
    color: #9ca3af;
    pointer-events: none;
}

/* Main Courses & Recordings Table Container */
.extra-courses-table-scroll,
.extra-recordings-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    overflow-x: auto;
    width: 100%;
    margin-bottom: 30px;
}

.extra-courses-table,
.extra-recordings-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
    text-align: right;
    direction: rtl;
}

.extra-courses-table thead,
.extra-recordings-table thead {
    background-color: #F15A48;
}

.extra-courses-table th,
.extra-recordings-table th {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff !important;
    padding: 14px 20px;
    border: none;
    text-align: right;
}

.extra-courses-table td,
.extra-recordings-table td {
    font-size: 14px;
    color: #333333;
    padding: 16px 20px;
    border-bottom: 1px solid #f2f2f2;
    vertical-align: middle;
}

.extra-courses-table tbody tr:last-child td,
.extra-recordings-table tbody tr:last-child td {
    border-bottom: none;
}

.extra-courses-table tbody tr:nth-child(even) td,
.extra-courses-table tbody tr:hover td,
.extra-recordings-table tbody tr:nth-child(even) td,
.extra-recordings-table tbody tr:hover td {
    background-color: #fafafa;
}

.extra-courses-table .course-name-cell {
    font-weight: bold;
    color: #1a1a1a;
    font-size: 15px;
    max-width: 220px;
}

.extra-courses-table .course-price-cell {
    color: #F15A48;
    font-weight: bold;
}

/* Badges */
.extra-status-badge {
    font-size: 11px;
    font-weight: bold;
    padding: 5px 14px;
    border-radius: 20px;
    display: inline-block;
    line-height: 1;
    text-align: center;
}

.extra-status-badge.active {
    background-color: #E2F6EC;
    color: #10B981;
}

.extra-status-badge.completed {
    background-color: #F3F4F6;
    color: #6B7280;
}

.extra-status-badge.soon {
    background-color: #FFF2E6;
    color: #F59E0B;
}

/* Actions Button */
.extra-course-action-btn {
    background-color: #F15A48;
    color: #ffffff !important;
    border: 1px solid #F15A48;
    border-radius: 12px;
    padding: 8px 18px;
    font-size: 12px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    box-shadow: 0 4px 6px rgba(241, 90, 72, 0.15);
}

.extra-course-action-btn:hover {
    background-color: #ffffff;
    color: #F15A48 !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .extra-my-courses-header h2 {
        font-size: 26px !important;
    }

    .extra-courses-stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .extra-courses-table-container {
        padding: 15px;
    }

    .extra-search-wrapper {
        max-width: 100%;
    }

    /* Reduce padding and prevent overflow in recordings table on mobile */
    .extra-recordings-table {
        table-layout: fixed;
        width: 100% !important;
    }

    .extra-courses-table th,
    .extra-recordings-table th,
    .extra-courses-table td,
    .extra-recordings-table td {
        padding: 6px 4px !important;
        font-size: 12px;
        overflow-wrap: break-word;
        word-break: break-word;
    }

    .extra-recordings-table th.col-watch,
    .extra-recordings-table td.col-watch {
        width: 36px !important;
        padding: 6px 2px !important;
    }

    .extra-recordings-table th.col-date,
    .extra-recordings-table td.col-date {
        width: 70px !important;
        padding: 6px 2px !important;
    }

    .extra-recordings-table th.col-duration,
    .extra-recordings-table td.col-duration {
        width: 60px !important;
        padding: 6px 2px !important;
    }

    .panopto-player-cell {
        padding: 6px 2px !important;
    }

    .panopto-embed-wrapper {
        position: relative;
        width: 100%;
        max-width: 100%;
        min-height: 180px;
        box-sizing: border-box;
    }
}

.wd-my-acc-dashboard {
    --wd-my-acc-nav-icon: "\f122";
}

.wd-my-acc-my-courses {
    --wd-my-acc-nav-icon: "\f104";
}

.wd-my-acc-orders {
    --wd-my-acc-nav-icon: "\f116";
}

.wd-my-acc-edit-account {
    --wd-my-acc-nav-icon: "\f124";
}

.wd-my-acc-customer-logout {
    --wd-my-acc-nav-icon: "\f108";
}

.wd-my-acc-recordings {
    --wd-my-acc-nav-icon: "\f101";
}

.myaccount-sidebar {
    position: sticky;
    top: 100px;
}

/* ==========================================================================
   Zoom Player Card (Single Course Page)
   ========================================================================== */
.extra-course-single-content {
    margin-top: 30px;
}

.zoom-player-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    margin-bottom: 40px;
    max-width: 950px;
}

.zoom-player-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.zoom-player-title-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.zoom-live-badge {
    background: #FFF4F3;
    border: 1px solid #FDDDD9;
    color: #F15B47;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 6px;
}

.zoom-live-badge.zoom-ended-badge {
    background: #F3F4F6;
    border-color: #E5E7EB;
    color: #6B7280;
}

.zoom-live-badge.zoom-upcoming-badge {
    background: #EFF6FF;
    border-color: #DBEAFE;
    color: #2563EB;
}

.zoom-live-dot {
    width: 6px;
    height: 6px;
    background: #FF4444;
    border-radius: 50%;
    display: inline-block;
}

.zoom-live-dot.zoom-ended-dot {
    background: #9CA3AF;
}

.zoom-live-dot.zoom-upcoming-dot {
    background: #3B82F6;
}

.zoom-player-title {
    margin: 0;
    font-size: 18px;
    color: #333;
    font-weight: 600;
}

.zoom-iframe-wrapper {
    border-radius: 12px;
    overflow: hidden;
    /* background: #111; */
    aspect-ratio: 3/2;
    position: relative;
}

.zoom-ended-screen {
    background: #242424;
    width: 100%;
    height: 100%;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.zoom-ended-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: #aaaaaa;
    font-size: 16px;
    font-weight: 500;
}

.zoom-iframe-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.zoom-player-footer {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.zoom-footer-info {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    text-align: right;
}

.zoom-footer-subtitle {
    font-weight: 500;
    color: #444;
}

.zoom-footer-date {
    color: #888;
    font-size: 13px;
    margin-top: 4px;
}


.extra-zoom-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 28px;
    font-size: 14px;
    border-radius: 30px;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
}

.extra-zoom-btn .wd-btn-text {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.recordings-title,
.marathon-dates-title {
    color: #F15A48;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    text-align: right;
}

.extra-course-action-btn.marathon-table-btn {
    padding: 5px 15px;
    font-size: 14px;
}

/* ==========================================================================
   Panopto Recordings Table Section
   ========================================================================== */

.extra-recordings-table {
    table-layout: fixed;
    width: 100%;
}

.extra-recordings-table th,
.extra-recordings-table td {
    overflow-wrap: break-word;
    word-break: break-word;
}

.extra-recordings-table th.col-watch,
.extra-recordings-table td.col-watch {
    width: 80px;
    text-align: center;
}

.extra-recordings-table th.col-date,
.extra-recordings-table td.col-date {
    width: 110px;
}

.extra-recordings-table th.col-duration,
.extra-recordings-table td.col-duration {
    width: 120px;
    text-align: center;
}

.extra-recordings-table .session-name {
    font-size: 14px;
    color: #333;
    overflow-wrap: break-word;
    word-break: break-word;
}

.extra-recordings-table .col-duration {
    font-weight: 700;
    color: #111;
    text-align: left;
    direction: ltr;
}

.extra-play-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    transition: transform 0.2s ease, opacity 0.2s ease;
    flex-shrink: 0;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    outline: none;
}

.extra-play-btn:hover {
    transform: scale(1.1);
    opacity: 0.85;
    background-color: transparent;
}

.extra-play-btn.is-active .play-icon {
    display: none !important;
}

.extra-play-btn.is-active .close-icon {
    display: inline-block !important;
}

.panopto-session-row.is-expanded td {
    background-color: #f7f7f7 !important;
}

.panopto-player-cell {
    padding: 12px 16px !important;
    background-color: #1a1a1a;
    border-bottom: 2px solid #F15A48 !important;
}

.panopto-embed-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 9;
    min-height: 240px;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
    box-sizing: border-box;
}

.panopto-embed-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: 100%;
    border: 0;
    display: block;
}

.extra-panopto-loading,
.extra-panopto-empty,
.extra-panopto-error {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #eee;
    padding: 30px;
    text-align: center;
    font-size: 14px;
    color: #666;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.extra-panopto-error {
    color: #d9534f;
}

/* ==========================================================================
   My Account - Recordings Page (הקלטות)
   ========================================================================== */
.extra-recordings-controls-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-bottom: 28px;
}

.extra-recordings-search-wrapper {
    position: relative;
    flex: 1 1 240px;
    min-width: 220px;
}

.extra-recordings-search-wrapper input {
    width: 100%;
    padding: 10px 40px 10px 16px !important;
    background: #f7f8fa !important;
    border: 1px solid #eef0f4 !important;
    border-radius: 12px !important;
    font-size: 14px !important;
    color: #333 !important;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.extra-recordings-search-wrapper input:focus {
    background: #fff !important;
    border-color: #F15A48 !important;
}

.extra-recordings-search-wrapper .search-icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    pointer-events: none;
}

.extra-recordings-select-wrapper {
    position: relative;
    flex: 0 0 auto;
}

.extra-recordings-select-wrapper select {
    appearance: none;
    -webkit-appearance: none;
    background: #f7f8fa url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%20999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") no-repeat left 14px center !important;
    border: 1px solid #eef0f4 !important;
    border-radius: 12px !important;
    padding: 10px 16px 10px 36px !important;
    font-size: 14px !important;
    color: #444 !important;
    cursor: pointer;
    outline: none;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.extra-recordings-select-wrapper select:focus,
.extra-recordings-select-wrapper select:hover {
    background-color: #fff !important;
    border-color: #ddd !important;
}

.extra-recordings-page-layout {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.extra-recordings-main-content {
    flex: 1 1 auto;
    min-width: 0;
}

.extra-recordings-sidebar {
    flex: 0 0 240px;
    width: 240px;
}

.extra-recordings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.extra-recording-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border: 1px solid #f0f2f5;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.extra-recording-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.extra-recording-card-body {
    flex: 1 1 auto;
    padding: 0;
}

.extra-recording-card-title {
    font-size: 19px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 16px 0;
    line-height: 1.3;
}

.extra-recording-cta-btn {
    display: inline-block;
    background: #F15A48;
    color: #ffffff !important;
    border-radius: 20px;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none !important;
    transition: background 0.2s ease, transform 0.1s ease;
}

.extra-recording-cta-btn:hover {
    background: #e04634;
    transform: scale(1.02);
}

.extra-recording-card-media {
    flex: 0 0 90px;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 14px;
}

.extra-recording-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
}

.extra-recording-default-icon {
    width: 64px;
    height: 64px;
    background: #fff5f3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Sidebar Widgets */
.extra-recordings-sidebar-widget {
    margin-bottom: 28px;
}

.extra-widget-title {
    font-size: 16px;
    font-weight: 700;
    color: #222;
    margin: 0 0 14px 0;
}

.extra-recordings-cat-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.extra-recordings-cat-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    border-radius: 12px;
    font-size: 14px;
    color: #444;
    cursor: pointer;
    margin-bottom: 6px;
    transition: background 0.2s ease, color 0.2s ease;
}

.extra-recordings-cat-list li:hover {
    background: #f7f8fa;
}

.extra-recordings-cat-list li.active {
    background: #F15A48;
    color: #ffffff;
    font-weight: 600;
}

.extra-recordings-cat-list .cat-count {
    background: #f0f2f5;
    color: #666;
    border-radius: 12px;
    padding: 2px 9px;
    font-size: 12px;
    font-weight: 600;
}

.extra-recordings-cat-list li.active .cat-count {
    background: rgba(255, 255, 255, 0.25);
    color: #ffffff;
}

/* Recently Viewed Widget */
.extra-recordings-recent-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.extra-recordings-recent-list li {
    margin-bottom: 10px;
    font-size: 13px;
}

.extra-recordings-recent-list li.empty-recent {
    color: #999;
    font-size: 13px;
}

.extra-recordings-recent-list li a {
    color: #555;
    text-decoration: none !important;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s ease;
}

.extra-recordings-recent-list li a:hover {
    color: #F15A48;
}

.extra-recordings-recent-list .recent-dot {
    width: 6px;
    height: 6px;
    background: #F15A48;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

.extra-recordings-empty-state,
.extra-recordings-no-results {
    background: #fff;
    border-radius: 16px;
    border: 1px dashed #ddd;
    padding: 40px 20px;
    text-align: center;
    color: #666;
}

.extra-recordings-empty-state .empty-icon {
    font-size: 36px;
    margin-bottom: 12px;
}

.extra-recordings-empty-state h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #333;
}

@media (max-width: 991px) {
    .extra-recordings-page-layout {
        flex-direction: column-reverse;
    }

    .extra-recordings-sidebar {
        width: 100%;
        flex: 1 1 100%;
    }

    .extra-recordings-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Single Course Header Styling (My Account)
   ========================================================================== */
.extra-single-course-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 35px;
    direction: rtl;
    text-align: center;
}

.extra-single-course-image {
    flex: 0 0 auto;
    width: 95px;
    height: 95px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.extra-single-course-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.extra-single-course-title {
    font-size: 64px !important;
    font-weight: 700 !important;
    color: #F15A48 !important;
    margin: 0 !important;
    line-height: 1.1 !important;
}

@media (max-width: 768px) {
    .extra-single-course-header {
        gap: 12px;
        margin-bottom: 20px;
    }

    .extra-single-course-image {
        width: 52px;
        height: 52px;
    }

    .extra-single-course-title {
        font-size: 32px !important;
    }
}

/* ==========================================================================
   Teaching Centers Recommendations Slider (My Account Dashboard)
   ========================================================================== */

.extra-teaching-centers-section {
    background: #FFF5F3;
    border-radius: 30px;
    padding: 40px 25px 60px;
    margin-top: 35px;
    margin-bottom: 35px;
    text-align: center;
    position: relative;
    direction: rtl;
    box-sizing: border-box;
}

.extra-tc-section-title {
    font-size: 36px;
    color: var(--wd-primary-color, #F15A48);
    margin: 0 0 8px 0;
    line-height: 1.2;
}

.extra-tc-section-subtitle {
    font-size: 24px;
    font-weight: 700;
    color: #1e1e1e;
    margin: 0 0 28px 0;
    line-height: 1.4;
}

.extra-tc-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    gap: 10px;
}

.extra-tc-nav {
    background: transparent;
    border: none;
    color: #222222;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    padding: 0;
    transition: transform 0.2s ease, opacity 0.2s ease;
    z-index: 5;
}

.extra-tc-nav:hover {
    transform: scale(1.2);
    color: var(--wd-primary-color, #F15A48);
    background-color: transparent;
}

.extra-tc-slider-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 10px 6px 16px;
    width: 100%;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.extra-tc-slider-track::-webkit-scrollbar {
    display: none;
}

.extra-tc-card {
    background: #ffffff;
    border-radius: 22px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
    padding: 24px 20px 22px;
    flex: 0 0 calc(33.333% - 14px);
    min-width: 200px;
    scroll-snap-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.extra-tc-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.extra-tc-card-image {
    width: 85px;
    height: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.extra-tc-card-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.extra-tc-card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 16px;
}

.extra-tc-card-title {
    font-size: 24px;
    color: var(--wd-primary-color, #F15A48);
    margin: 0 0 6px 0;
    line-height: 1.3;
    text-align: center;
}

.extra-tc-card-subtext {
    font-size: 16px;
    margin: 0;
    text-align: center;
}

.extra-tc-card-action {
    margin-top: auto;
}

.extra-tc-card-btn {
    background: var(--wd-primary-color, #F15A48);
    color: #ffffff !important;
    font-size: 15px;
    font-weight: 700;
    padding: 8px 30px;
    border-radius: 25px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(241, 90, 72, 0.25);
    transition: all 0.2s ease;
    display: inline-block;
}

.extra-tc-card-btn:hover {
    background: #e04432;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(241, 90, 72, 0.35);
    color: #ffffff !important;
}

@media (max-width: 991px) {
    .extra-tc-card {
        flex: 0 0 calc(50% - 10px);
    }
}

@media (max-width: 768px) {
    .extra-teaching-centers-section {
        padding: 30px 16px 35px;
    }

    .extra-tc-section-title {
        font-size: 26px;
    }

    .extra-tc-section-subtitle {
        font-size: 17px;
        margin-bottom: 22px;
    }

    .extra-tc-card {
        flex: 0 0 75%;
        padding: 20px 16px 18px;
    }

    .extra-tc-card-title {
        font-size: 19px;
    }
}