/* /Components/AccessibilityControls.razor.rz.scp.css */
/* Accessibility Toolbar - W3C WCAG 2.1 Level AA Compliant */
.accessibility-toolbar[b-f31avtq7y6] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #dee2e6;
    position: relative;
}

.accessibility-btn[b-f31avtq7y6] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 14px;
    background: #ffffff;
    border: 2px solid #0c57f0;
    border-radius: 8px;
    color: #1a1a1a;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    min-height: 44px; /* WCAG touch target size */
    position: relative;
}

.accessibility-btn:hover[b-f31avtq7y6] {
    background: #0c57f0;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(12, 87, 240, 0.35);
}

.accessibility-btn:hover i[b-f31avtq7y6] {
    color: #ffffff;
}

/* WCAG 2.1: Focus visible with 3px solid outline and 4.5:1 contrast */
.accessibility-btn:focus[b-f31avtq7y6] {
    outline: 3px solid #0c57f0;
    outline-offset: 3px;
    box-shadow: 0 0 0 3px rgba(12, 87, 240, 0.3);
}

.accessibility-btn:focus-visible[b-f31avtq7y6] {
    outline: 3px solid #0c57f0;
    outline-offset: 3px;
}

.accessibility-btn:active[b-f31avtq7y6] {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(12, 87, 240, 0.2);
}

.accessibility-btn.active[b-f31avtq7y6] {
    background: linear-gradient(135deg, #0c57f0, #1b6ec2);
    color: #ffffff;
    border-color: #1b6ec2;
    box-shadow: 0 2px 8px rgba(12, 87, 240, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.accessibility-btn.active i[b-f31avtq7y6] {
    color: #ffffff;
}

.accessibility-btn.active:hover[b-f31avtq7y6] {
    background: linear-gradient(135deg, #0a4bcc, #1659a3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(12, 87, 240, 0.5);
}

.accessibility-btn i[b-f31avtq7y6] {
    font-size: 16px;
    color: #0c57f0;
    transition: color 0.25s ease;
}

.accessibility-btn .small-icon[b-f31avtq7y6] {
    font-size: 11px;
    position: relative;
    top: -2px;
    margin-left: -4px;
}

.accessibility-btn .btn-label[b-f31avtq7y6] {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* Disabled state - WCAG compliant */
.accessibility-btn:disabled[b-f31avtq7y6] {
    opacity: 0.5;
    cursor: not-allowed;
    background: #e9ecef;
    border-color: #ced4da;
    color: #6c757d;
}

.accessibility-btn:disabled i[b-f31avtq7y6] {
    color: #6c757d;
}

.accessibility-btn:disabled:hover[b-f31avtq7y6] {
    transform: none;
    background: #e9ecef;
    color: #6c757d;
    box-shadow: none;
}

/* Font size indicator */
.font-size-indicator[b-f31avtq7y6] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    padding: 4px 8px;
    background: linear-gradient(135deg, #0c57f0, #1b6ec2);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    border-radius: 6px;
    margin: 0 4px;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

:global(body.reading-mode) .font-size-indicator[b-f31avtq7y6] {
    background: linear-gradient(135deg, #8b7355, #6d5940);
}

.toolbar-divider[b-f31avtq7y6] {
    width: 2px;
    height: 32px;
    background: linear-gradient(180deg, transparent, #0c57f0, transparent);
    margin: 0 6px;
    border-radius: 2px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .accessibility-toolbar[b-f31avtq7y6] {
        flex-wrap: wrap;
        gap: 6px;
        padding: 8px;
    }

    .accessibility-btn .btn-label[b-f31avtq7y6] {
        display: none;
    }

    .accessibility-btn[b-f31avtq7y6] {
        padding: 8px 10px;
        min-width: 40px;
    }

    .toolbar-divider[b-f31avtq7y6] {
        display: none;
    }
}

@media (max-width: 576px) {
    .accessibility-toolbar[b-f31avtq7y6] {
        justify-content: center;
    }

    .accessibility-btn[b-f31avtq7y6] {
        padding: 6px 8px;
        min-width: 36px;
    }

    .accessibility-btn i[b-f31avtq7y6] {
        font-size: 14px;
    }
}

/* Reading Mode Specific Toolbar Styles */
:global(body.reading-mode) .accessibility-toolbar[b-f31avtq7y6] {
    background: #fefcf5;
    border-color: #d4c5b0;
    box-shadow: 0 2px 12px rgba(139, 115, 85, 0.15);
}

:global(body.reading-mode) .accessibility-btn[b-f31avtq7y6] {
    background: #fefcf5;
    border-color: #8b7355;
    color: #2d2416;
}

:global(body.reading-mode) .accessibility-btn i[b-f31avtq7y6] {
    color: #8b7355;
}

:global(body.reading-mode) .accessibility-btn:hover[b-f31avtq7y6] {
    background: #8b7355;
    color: #fefcf5;
}

:global(body.reading-mode) .accessibility-btn:hover i[b-f31avtq7y6] {
    color: #fefcf5;
}

:global(body.reading-mode) .accessibility-btn.active[b-f31avtq7y6] {
    background: linear-gradient(135deg, #8b7355, #6d5940);
    color: #fefcf5;
    border-color: #6d5940;
}

:global(body.reading-mode) .accessibility-btn:focus[b-f31avtq7y6] {
    outline-color: #8b7355;
    box-shadow: 0 0 0 3px rgba(139, 115, 85, 0.3);
}

:global(body.reading-mode) .toolbar-divider[b-f31avtq7y6] {
    background: linear-gradient(180deg, transparent, #8b7355, transparent);
}

/* High contrast for users with visual impairments */
@media (prefers-contrast: high) {
    .accessibility-toolbar[b-f31avtq7y6] {
        border-width: 3px;
    }
    
    .accessibility-btn[b-f31avtq7y6] {
        border-width: 3px;
        font-weight: 700;
    }
    
    .accessibility-btn:focus[b-f31avtq7y6] {
        outline-width: 4px;
    }
}

/* Reduced motion for users sensitive to animations */
@media (prefers-reduced-motion: reduce) {
    .accessibility-btn[b-f31avtq7y6],
    .accessibility-btn i[b-f31avtq7y6] {
        transition: none;
    }
    
    .accessibility-btn:hover[b-f31avtq7y6] {
        transform: none;
    }
}

/* Reading Mode and High Contrast styles are in takelesson.css for global application */

/* /Components/AskaQuestion.razor.rz.scp.css */
/* Theme Colors */
:root[b-v956w0xf9w] {
    --brand-accent: #ed7323;
    --radius: 10px;
}

/* Ask Question Panel */
.panel.ask-question-panel[b-v956w0xf9w] {
    background: linear-gradient(135deg, var(--brand-accent), #ff8c42) !important;
    color: #fff !important;
    position: relative;
    overflow: hidden;
}

.ask-question-panel[b-v956w0xf9w]::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}

/* Decorative Background Circles */
.ask-bg-circle[b-v956w0xf9w] {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.ask-bg-circle-top[b-v956w0xf9w] {
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
}

.ask-bg-circle-bottom[b-v956w0xf9w] {
    bottom: -30px;
    left: -30px;
    width: 100px;
    height: 100px;
}

.ask-content[b-v956w0xf9w] {
    position: relative;
    z-index: 1;
}

.ask-title[b-v956w0xf9w] {
    font-weight: 700;
    color: #fff !important;
    margin-bottom: 16px;
    font-size: 22px;
    position: relative;
    z-index: 1;
    font-family: var(--font-family);
}

.ask-title i[b-v956w0xf9w] {
    margin-right: 8px;
}

.ask-description[b-v956w0xf9w] {
    color: rgba(255, 255, 255, 0.95) !important;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    font-family: var(--font-family);
}

.ask-btn[b-v956w0xf9w] {
    background-color: #fff !important;
    color: var(--brand-accent) !important;
    border: none;
    border-radius: var(--radius);
    padding: 12px 24px;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
    font-family: var(--font-family);
}

.ask-btn:hover[b-v956w0xf9w] {
    background-color: #f8f9fa !important;
    color: var(--brand-accent) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.ask-btn i[b-v956w0xf9w] {
    margin-right: 8px;
}

/* Token Display in Ask Panel */
.tokenStackDiv[b-v956w0xf9w] {
    position: relative;
    z-index: 1;
}

/* KS2 Theme Font Weight Override - Change all bold (700) to semi-bold (600) */
[data-theme="KS2"] .panel-title[b-v956w0xf9w],
[data-theme="[KS2]"] .panel-title[b-v956w0xf9w],
[data-theme="KS2"] .question-prompt[b-v956w0xf9w],
[data-theme="[KS2]"] .question-prompt[b-v956w0xf9w] {
    font-weight: 600 !important;
}


/* /Components/Loaders/Loader.razor.rz.scp.css */
.loader-container[b-qxejljb3to] {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    justify-content: center;
    display: flex;
    align-items: center;
    margin-top:30px;
}

.loader[b-qxejljb3to] {
    border: 4px solid #f3f3f3;
    border-radius: 50%;
    border-top: 4px solid var(--KsolBlue);
    width: 40px;
    height: 40px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin-b-qxejljb3to 2s linear infinite;
}
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin-b-qxejljb3to {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
/* /Components/Navigation.razor.rz.scp.css */
/* Navigation Component Styles */

/* Navbar Container */
.navbar[b-dwek13imtn] {
    padding: 0.75rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Brand Logo */
.navbar-brand[b-dwek13imtn] {
    transition: transform 0.2s ease;
}

.navbar-brand:hover[b-dwek13imtn] {
    transform: scale(1.05);
}

.navbar-brand img[b-dwek13imtn] {
    width: 140px !important;
    height: auto;
    display: block;
}

/* Navigation Links */
[b-dwek13imtn] .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    border-radius: 8px;
    transition: all 0.2s ease;
    align-items: center;
    gap: 8px;
    margin: 0 4px;
}

[b-dwek13imtn] .nav-link:hover {
    color: #ffffff !important;
    background: rgba(211, 95, 26, 0.5);
    transform: translateY(-1px);
}

[b-dwek13imtn] .nav-link.active {
    color: #ffffff !important;
    background: rgba(211, 95, 26, 0.6);
    font-weight: 600;
}

[b-dwek13imtn] .nav-link i {
    font-size: 16px;
}

/* User Circle (Desktop) */
[b-dwek13imtn] .circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0c57f0, #1b6ec2);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

[b-dwek13imtn] .circle:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

[b-dwek13imtn] .circle a {
    color: #ffffff !important;
    text-decoration: none;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Token Circle (Desktop) */
[b-dwek13imtn] .circleToken {
    width: 45px;
    height: 45px;
    background-image: url('../images/token2.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    transition: transform 0.2s ease;
}

[b-dwek13imtn] .circleToken:hover {
    transform: scale(1.1);
}

/* Navbar Toggler (Hamburger) */
.navbar-toggler[b-dwek13imtn] {
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
    transition: all 0.2s ease;
}

.navbar-toggler:focus[b-dwek13imtn] {
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
}

.navbar-toggler:hover[b-dwek13imtn] {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
}

[b-dwek13imtn] .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mobile Navigation Enhancements */
@media (max-width: 991px) {
    /* Remove margin from logo on mobile */
    .navbar-brand img[b-dwek13imtn] {
        margin-left: 0 !important;
    }

    /* Collapsed Menu Styling */
    [b-dwek13imtn] .navbar-collapse {
        background: linear-gradient(135deg, #d35f1a, #ed7323);
        margin: 0.75rem -1rem -0.75rem;
        padding: 1rem;
        border-radius: 0 0 12px 12px;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    }

    /* Navigation Items */
    [b-dwek13imtn] .navbar-nav {
        gap: 0.5rem;
    }

    [b-dwek13imtn] .nav-item {
        width: 100%;
    }

    [b-dwek13imtn] .nav-link {
        padding: 0.75rem 1rem !important;
        border-radius: 8px;
        font-size: 15px;
        margin: 0;
    }

    [b-dwek13imtn] .nav-link:hover {
        background: rgba(211, 95, 26, 0.5);
    }

    [b-dwek13imtn] .nav-link.active {
        background: rgba(211, 95, 26, 0.6);
    }

    /* Mobile Account Section */
    .mobile-account-section[b-dwek13imtn] {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 0.75rem 1rem;
        border-radius: 8px;
        margin-top: 0.5rem;
    }

    .mobile-user-info[b-dwek13imtn] {
        display: flex;
        align-items: center;
        gap: 12px;
        flex: 1;
    }

    .mobile-circle[b-dwek13imtn] {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: linear-gradient(135deg, #0c57f0, #1b6ec2);
        color: #ffffff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 14px;
        flex-shrink: 0;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    }

    .mobile-account-link[b-dwek13imtn] {
        color: #ffffff !important;
        text-decoration: none;
        font-weight: 600;
        font-size: 15px;
        flex: 1;
    }

    .mobile-account-link:hover[b-dwek13imtn] {
        text-decoration: underline;
    }

    .mobile-token-display[b-dwek13imtn] {
        display: flex;
        align-items: center;
        gap: 8px;
        background: rgba(255, 255, 255, 0.2);
        padding: 6px 12px;
        border-radius: 20px;
        font-weight: 700;
        color: #ffffff;
        font-size: 14px;
    }

    .mobile-token-icon[b-dwek13imtn] {
        width: 24px;
        height: 24px;
        background-image: url('../images/token2.png');
        background-size: cover;
        background-position: center;
        border-radius: 50%;
    }

    /* Divider */
    .mobile-nav-divider[b-dwek13imtn] {
        height: 1px;
        background: rgba(255, 255, 255, 0.2);
        margin: 0.75rem 0;
    }
}

/* Tablet Adjustments */
@media (max-width: 768px) {
    .navbar-brand img[b-dwek13imtn] {
        width: 120px !important;
    }

    [b-dwek13imtn] .nav-link {
        font-size: 14px;
        padding: 0.65rem 1rem !important;
    }

    .mobile-circle[b-dwek13imtn] {
        width: 36px;
        height: 36px;
        font-size: 13px;
    }

    .mobile-account-link[b-dwek13imtn] {
        font-size: 14px;
    }

    .mobile-token-display[b-dwek13imtn] {
        font-size: 13px;
        padding: 5px 10px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .navbar[b-dwek13imtn] {
        padding: 0.5rem 0;
    }

    .navbar-brand img[b-dwek13imtn] {
        width: 100px !important;
    }

    [b-dwek13imtn] .navbar-collapse {
        margin: 0.5rem -0.75rem -0.5rem;
        padding: 0.75rem;
    }

    .mobile-account-section[b-dwek13imtn] {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .mobile-user-info[b-dwek13imtn] {
        justify-content: center;
    }

    .mobile-token-display[b-dwek13imtn] {
        justify-content: center;
    }
}

/* /Components/QuizFeatures/StudentClickandMatch.razor.rz.scp.css */
.option-item[b-hmiknlxxbm] {
    background: #f8f9fa;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    padding: 12px;
    margin: 8px 0;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.option-item:hover[b-hmiknlxxbm] {
    background: #e9ecef;
    border-color: #2c7ab2;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.option-item.selected[b-hmiknlxxbm] {
    background: #2c7ab2;
    color: white;
    border-color: #1e5a8a;
}

/* Ensure table cells don't interfere with clickCol1 styling */
[b-hmiknlxxbm] td {
    padding: 8px !important;
}

[b-hmiknlxxbm] .clickCol1 {
    background: #f8f9fa !important;
    border: 2px solid #dee2e6 !important;
    border-radius: 8px !important;
    padding: 20px !important;
    margin: 8px 0 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    min-height: 80px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

[b-hmiknlxxbm] .clickCol1:hover {
    background: #e9ecef !important;
    border-color: #2c7ab2 !important;
    border-style: solid !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1) !important;
}

[b-hmiknlxxbm] .clickCol1.selected {
    background: #2c7ab2 !important;
    color: white !important;
    border-color: #1e5a8a !important;
    border-style: solid !important;
}

[b-hmiknlxxbm] .clickCol1.matched {
    background: #fff3cd !important;
    border-color: #ffc107 !important;
    border-style: solid !important;
}

.drop-zone[b-hmiknlxxbm] {
    background: #f8f9fa;
    border: 2px dashed #dee2e6;
    border-radius: 8px;
    padding: 20px;
    margin: 8px 0;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.drop-zone:hover[b-hmiknlxxbm] {
    background: #e9ecef;
    border-color: #0b5ed7;
    border-style: solid;
}

.drop-zone.matched[b-hmiknlxxbm] {
    background: #fff3cd;
    border-color: #ffc107;
    border-style: solid;
}

.drop-zone-content[b-hmiknlxxbm] {
    text-align: center;
    color: #6c757d;
}

.drop-zone-content i[b-hmiknlxxbm] {
    font-size: 24px;
    margin-bottom: 8px;
    display: block;
}

/* /Components/TokenDisplay.razor.rz.scp.css */
img.tokenStackQuestion[b-85nm4k3gdv] {
    width: 150px;
    text-align: center;
    position: relative;
}

p.tokenStackCountAsk[b-85nm4k3gdv] {
    position: relative;
    top: -96px;
    font-size: 32px;
    left: 111px;
    color: #935b12;
    font-weight: bold;
}

p.tokenStackCountAskPage[b-85nm4k3gdv] {
    position: relative;
    top: -96px;
    font-size: 32px;
    left: -34px;
    color: #935b12;
    font-weight: bold;
}

.fade-in[b-85nm4k3gdv] {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.fade-in.show[b-85nm4k3gdv] {
        opacity: 1;
 }

.tokenStackAsk1[b-85nm4k3gdv] {
    width: 200px;
    text-align: center;
    position: relative;
    left: 34px;
    margin: 0 auto;
}

p.tokenStackCountAsk1[b-85nm4k3gdv] {
    position: relative;
    top: -96px;
    font-size: 32px;
    color: #935b12;
    font-weight: bold;
}

.tokenPlayer[b-85nm4k3gdv]{
    text-align:center;
    margin:0 auto;
    margin-top:-70px;
}

.tokenStackDiv[b-85nm4k3gdv] {
    position: relative;
}
.tokenStackAskDiv[b-85nm4k3gdv] {
    text-align: center;
    /* background: #ffffff; */
    padding: 20px;
    /*    margin-top: -60px;
*/ border-radius: 10px;
}

.tokenStackAsk[b-85nm4k3gdv] {
    width: 100%;
    text-align: center;
    /* position: relative; */
    margin: 0 auto;
}

.mt-60[b-85nm4k3gdv] {
    margin-top: -60px;
}

h2[b-85nm4k3gdv] {
    font-weight: 900;
}

.panel h3[b-85nm4k3gdv] {
    font-size: 18px;
    font-weight: 900;
}

.panel[b-85nm4k3gdv] {
    width: 93% !important;
}

.UploadTitle p[b-85nm4k3gdv] {
    font-size: 14px;
    padding-bottom: 0;
    margin-bottom: 0;
}

.asked-question img[b-85nm4k3gdv] {
    width: 100%;
    border-radius: 10px;
}

.asked-question[b-85nm4k3gdv] {
    border-radius: 10px;
    cursor: pointer;
    padding: 0px;
}

    .asked-question p[b-85nm4k3gdv] {
        font-size: 14px;
        padding-bottom: 0;
        margin-bottom: 0;
    }

    .asked-question em[b-85nm4k3gdv] {
        font-size: 12px;
        font-weight: 700;
        color: #ffffff;
        font-style: normal;
        position: relative;
        top: -50px;
        text-align: right;
        float: right;
        /* margin-right: 20px; */
        right: 5px;
        background: #0c57f0;
        padding: 2px 10px;
        border-radius: 10px;
        z-index: 10;
    }

em.QNotAnswered[b-85nm4k3gdv] {
    font-size: 12px;
    font-weight: 700;
    color: #ffffff;
    font-style: normal;
    position: relative;
    top: -50px;
    text-align: right;
    float: right;
    /* margin-right: 20px; */
    right: 5px;
    background: #d12828 !important;
    padding: 2px 10px;
    z-index: 10;
    border-radius: 10px;
}

.VideoAnswer[b-85nm4k3gdv] {
    border-radius: 10px;
    border: 1px solid #eeeeee;
}

.image-container[b-85nm4k3gdv] {
    position: relative;
    display: inline-block;
    width: 100%;
    height: auto;
}

.gridView[b-85nm4k3gdv] {
    background: #ffffff;
    border-radius: 10px;
    padding: 0px 20px
}

h4.notesExpert[b-85nm4k3gdv] {
    font-size: 18px;
    margin-top: 20px;
}

.viewAnswer[b-85nm4k3gdv] {
    background: #ffffff;
    border-radius: 10px;
    padding: 0px 20px;
}

.questionImage[b-85nm4k3gdv] {
    width: 100%;
    height: auto;
    display: block;
}

.overlay[b-85nm4k3gdv] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    border-radius: 10px;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2); /* Black with 60% opacity */
    transition: opacity 0.3s ease-in-out;
    opacity: 1; /* Fully visible initially */
    z-index: 1;
    cursor: pointer;
}

.image-container:hover .overlay[b-85nm4k3gdv] {
    opacity: 0; /* Invisible when hovered */
    z-index: -1; /* Send overlay behind image */
}

/* KS2 Theme Font Weight Override - Change all bold (700) to semi-bold (600) */
[data-theme="KS2"] .token-balance[b-85nm4k3gdv],
[data-theme="[KS2]"] .token-balance[b-85nm4k3gdv],
[data-theme="KS2"] .token-label[b-85nm4k3gdv],
[data-theme="[KS2]"] .token-label[b-85nm4k3gdv] {
    font-weight: 600 !important;
}

/* /Components/Welcome.razor.rz.scp.css */
/* Welcome Overlay - Modern Design */
.welcome-overlay[b-2l9db2zq0u] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(12px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn-b-2l9db2zq0u 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.welcome-modal[b-2l9db2zq0u] {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    max-width: 920px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp-b-2l9db2zq0u 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Custom Scrollbar */
.welcome-modal[b-2l9db2zq0u]::-webkit-scrollbar {
    width: 8px;
}

.welcome-modal[b-2l9db2zq0u]::-webkit-scrollbar-track {
    background: transparent;
}

.welcome-modal[b-2l9db2zq0u]::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

.welcome-modal[b-2l9db2zq0u]::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

.close-btn[b-2l9db2zq0u] {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    color: #64748b;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.2s ease;
    z-index: 10;
}

.close-btn:hover[b-2l9db2zq0u] {
    background: rgba(0, 0, 0, 0.1);
    color: #334155;
    transform: scale(1.05);
}

.welcome-header[b-2l9db2zq0u] {
    text-align: center;
    padding: 56px 48px 40px;
}

.logo-container[b-2l9db2zq0u] {
    margin-bottom: 24px;
}

.logo-container img[b-2l9db2zq0u] {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.welcome-header h1[b-2l9db2zq0u] {
    font-size: 32px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 12px;
    letter-spacing: -0.02em;
}

.welcome-header .subtitle[b-2l9db2zq0u] {
    font-size: 18px;
    color: #64748b;
    margin: 0;
    font-weight: 400;
}

/* Tour Message Shell */
.tour-message[b-2l9db2zq0u] {
    background: #ffffff;
    border-radius: var(--radius, 16px);
    box-shadow: 0 24px 65px rgba(15, 23, 42, 0.35);
    width: min(80vw, 1100px);
    max-width: 1100px;
    min-width: 320px;
    max-height: 92vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: scaleIn-b-2l9db2zq0u 0.3s ease-out;
    position: relative;
}

/* Header */
.tour-header[b-2l9db2zq0u] {
    background: linear-gradient(135deg, var(--brand-primary, #0c57f0), var(--brand-secondary, #1b6ec2));
    color: #ffffff;
    padding: 24px 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
}

.tour-branding[b-2l9db2zq0u] {
    display: flex;
    align-items: center;
    gap: 18px;
    flex: 1 1 320px;
}

.tour-logo[b-2l9db2zq0u] {
    width: 72px;
    height: 72px;
    object-fit: contain;
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.2));
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px;
}

.tour-header-text h2[b-2l9db2zq0u] {
    margin: 6px 0;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.tour-header-text h3[b-2l9db2zq0u] {
    margin: 6px 0;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tour-header-text p[b-2l9db2zq0u] {
    margin: 0;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
}

.tour-pill[b-2l9db2zq0u] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-badge, 20px);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.accent-pill[b-2l9db2zq0u] {
    background: linear-gradient(135deg, var(--brand-accent, #ed7323), #ff8c42);
    color: #ffffff;
}

.subtle-pill[b-2l9db2zq0u] {
    background: rgba(12, 87, 240, 0.08);
    color: var(--brand-primary, #0c57f0);
    padding: 4px 10px;
}

.tour-header-progress[b-2l9db2zq0u] {
    flex: 1 1 220px;
    min-width: 220px;
}

.step-indicator[b-2l9db2zq0u] {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.step-label[b-2l9db2zq0u] {
    opacity: 0.8;
}

.step-current[b-2l9db2zq0u] {
    font-size: 28px;
    font-weight: 700;
}

.step-total[b-2l9db2zq0u] {
    opacity: 0.8;
}

.tour-progress-track[b-2l9db2zq0u] {
    margin-top: 8px;
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    overflow: hidden;
}

.tour-progress-fill[b-2l9db2zq0u] {
    display: block;
    height: 100%;
    background: linear-gradient(135deg, var(--brand-accent, #ed7323), #ffb347);
    transition: width 0.3s ease;
}

/* Content */
.tour-content[b-2l9db2zq0u] {
    flex: 1;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    overflow-y: auto;
}

.tour-welcome-layout[b-2l9db2zq0u] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.welcome-copy[b-2l9db2zq0u] {
    background: var(--light-gray, #f8f9fa);
    border-radius: var(--radius, 16px);
    padding: 24px;
    box-shadow: 0 2px 12px rgba(12, 87, 240, 0.08);
}

.welcome-copy h2[b-2l9db2zq0u] {
    margin: 12px 0 8px;
    font-size: 28px;
    color: var(--text-primary, #333333);
}

.welcome-copy p[b-2l9db2zq0u] {
    margin: 0 0 20px;
    color: var(--text-secondary, #666666);
    line-height: 1.6;
}

.tour-checklist[b-2l9db2zq0u] {
    list-style: none;
    margin: 0 0 20px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tour-checklist li[b-2l9db2zq0u] {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--text-primary, #333333);
}

.tour-checklist i[b-2l9db2zq0u] {
    color: var(--brand-primary, #0c57f0);
}

.tour-meta[b-2l9db2zq0u] {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.meta-item[b-2l9db2zq0u] {
    flex: 1 1 120px;
    background: #ffffff;
    border: 1px solid var(--border-color, #dee2e6);
    border-radius: var(--radius, 16px);
    padding: 12px 16px;
    box-shadow: 0 2px 10px rgba(12, 87, 240, 0.08);
}

.meta-value[b-2l9db2zq0u] {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--brand-primary, #0c57f0);
}

.meta-label[b-2l9db2zq0u] {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-secondary, #666666);
}

.welcome-grid[b-2l9db2zq0u] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
}

.welcome-card[b-2l9db2zq0u] {
    background: #ffffff;
    border-radius: var(--radius, 16px);
    padding: 20px;
    border-left: 4px solid var(--brand-accent, #ed7323);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.welcome-card i[b-2l9db2zq0u] {
    font-size: 20px;
    color: var(--brand-accent, #ed7323);
}

.welcome-card h4[b-2l9db2zq0u] {
    margin: 10px 0 6px;
    font-size: 18px;
    color: var(--text-primary, #333333);
}

.welcome-card p[b-2l9db2zq0u] {
    margin: 0;
    color: var(--text-secondary, #666666);
    line-height: 1.4;
}

.tour-step-layout[b-2l9db2zq0u] {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tour-step-main[b-2l9db2zq0u] {
    display: flex;
    gap: 20px;
    align-items: center;
}

.step-icon[b-2l9db2zq0u] {
    width: 88px;
    height: 88px;
    border-radius: var(--radius, 16px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #ffffff;
    box-shadow: 0 12px 30px rgba(12, 87, 240, 0.25);
}

.step-copy h3[b-2l9db2zq0u] {
    margin: 10px 0 6px;
    font-size: 26px;
    color: var(--text-primary, #333333);
}

.step-copy p[b-2l9db2zq0u] {
    margin: 0;
    color: var(--text-secondary, #666666);
    line-height: 1.6;
}

.accent-dashboard[b-2l9db2zq0u] { background: linear-gradient(135deg, #0c57f0, #1b6ec2); }
.accent-lessons[b-2l9db2zq0u] { background: linear-gradient(135deg, #ed7323, #ff8c42); }
.accent-tutor[b-2l9db2zq0u] { background: linear-gradient(135deg, #1cc8ee, #0c57f0); }
.accent-exam[b-2l9db2zq0u] { background: linear-gradient(135deg, #28a745, #50c76f); }
.accent-history[b-2l9db2zq0u] { background: linear-gradient(135deg, #fa709a, #fee140); }
.accent-account[b-2l9db2zq0u] { background: linear-gradient(135deg, #8e54e9, #4776e6); }

.feature-grid[b-2l9db2zq0u] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.feature-card[b-2l9db2zq0u] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-radius: var(--radius, 16px);
    background: var(--light-gray, #f8f9fa);
    border: 1px solid var(--border-color, #dee2e6);
    font-weight: 600;
    color: var(--text-primary, #333333);
}

.feature-card i[b-2l9db2zq0u] {
    color: var(--brand-primary, #0c57f0);
}

.tour-step-bottom[b-2l9db2zq0u] {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.tour-tip-card[b-2l9db2zq0u] {
    flex: 1 1 260px;
    background: linear-gradient(135deg, var(--brand-accent, #ed7323), #ff8c42);
    border-radius: var(--radius, 16px);
    color: #ffffff;
    padding: 20px 24px;
    box-shadow: 0 10px 25px rgba(237, 115, 35, 0.35);
}

.tip-label[b-2l9db2zq0u] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    margin-bottom: 8px;
}

.tour-tip-card p[b-2l9db2zq0u] {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
}

.tour-microcopy[b-2l9db2zq0u] {
    flex: 1 1 200px;
    border-radius: var(--radius, 16px);
    border: 1px dashed var(--brand-secondary, #1b6ec2);
    padding: 16px 18px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: var(--brand-secondary, #1b6ec2);
    background: rgba(27, 110, 194, 0.08);
}

.tour-next-card[b-2l9db2zq0u] {
    border-radius: var(--radius, 16px);
    border: 1px dashed var(--brand-primary, #0c57f0);
    padding: 18px 20px;
    background: #ffffff;
    box-shadow: inset 0 0 0 1px rgba(12, 87, 240, 0.08);
}

.next-label[b-2l9db2zq0u] {
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--brand-primary, #0c57f0);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.next-title[b-2l9db2zq0u] {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary, #333333);
}

.tour-next-card p[b-2l9db2zq0u] {
    margin: 4px 0 0;
    color: var(--text-secondary, #666666);
}

/* Actions */
.tour-actions[b-2l9db2zq0u] {
    padding: 20px 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    border-top: 1px solid var(--border-color, #dee2e6);
    background: #ffffff;
}

.btn[b-2l9db2zq0u] {
    padding: 12px 24px;
    border-radius: var(--radius, 16px);
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary[b-2l9db2zq0u] {
    background: linear-gradient(135deg, var(--brand-primary, #0c57f0), var(--brand-secondary, #1b6ec2));
    color: #ffffff;
    box-shadow: 0 6px 18px rgba(12, 87, 240, 0.4);
}

.btn-primary:hover[b-2l9db2zq0u] {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(12, 87, 240, 0.45);
}

.btn-outline[b-2l9db2zq0u] {
    background: transparent;
    color: var(--brand-secondary, #1b6ec2);
    border: 2px solid var(--brand-secondary, #1b6ec2);
}

.btn-outline:hover[b-2l9db2zq0u] {
    background: var(--brand-secondary, #1b6ec2);
    color: #ffffff;
}

.btn-skip[b-2l9db2zq0u] {
    background: transparent;
    color: var(--text-secondary, #666666);
    border: 1px solid var(--border-color, #dee2e6);
}

.btn-skip:hover[b-2l9db2zq0u] {
    background: var(--light-gray, #f8f9fa);
    color: var(--text-primary, #333333);
}

/* Progress dots */
.tour-progress[b-2l9db2zq0u] {
    padding: 16px 0 24px;
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
}

.progress-dot[b-2l9db2zq0u] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--medium-gray, #e9ecef);
    transition: all 0.3s ease;
}

.progress-dot.active[b-2l9db2zq0u] {
    width: 36px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--brand-primary, #0c57f0), var(--brand-secondary, #1b6ec2));
}

.progress-dot.completed[b-2l9db2zq0u] {
    background: var(--brand-primary, #0c57f0);
    opacity: 0.85;
}

/* Welcome Body */
.welcome-body[b-2l9db2zq0u] {
    padding: 0 48px 48px;
}

.video-container-modern[b-2l9db2zq0u] {
    position: relative;
    width: 100%;
    height: 480px;
    border-radius: 16px;
    overflow: hidden;
    background: #000;
    margin-bottom: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.video-container-modern iframe[b-2l9db2zq0u] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Walkthrough Section */
.walkthrough-section[b-2l9db2zq0u] {
    text-align: center;
    margin-bottom: 32px;
    padding: 24px;
    background: linear-gradient(135deg, rgba(12, 87, 240, 0.05), rgba(27, 110, 194, 0.05));
    border-radius: 16px;
    border: 2px solid rgba(12, 87, 240, 0.1);
}

.section-title[b-2l9db2zq0u] {
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.section-title i[b-2l9db2zq0u] {
    color: #0c57f0;
    font-size: 28px;
}

.intro-text[b-2l9db2zq0u] {
    font-size: 16px;
    color: #475569;
    margin: 0;
    line-height: 1.6;
}

/* Features Grid */
.features-grid[b-2l9db2zq0u] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.feature-box[b-2l9db2zq0u] {
    text-align: left;
    padding: 28px 24px;
    background: #ffffff;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 2px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.feature-box:hover[b-2l9db2zq0u] {
    border-color: #0c57f0;
    box-shadow: 0 8px 24px rgba(12, 87, 240, 0.15);
    transform: translateY(-4px);
}

.feature-icon[b-2l9db2zq0u] {
    width: 56px;
    height: 56px;
    margin: 0 0 16px 0;
    background: linear-gradient(135deg, #0c57f0, #1b6ec2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(12, 87, 240, 0.25);
}

/* Feature Icon Colors */
.feature-icon.dashboard[b-2l9db2zq0u] {
    background: linear-gradient(135deg, #0c57f0, #1b6ec2);
}

.feature-icon.lessons[b-2l9db2zq0u] {
    background: linear-gradient(135deg, #ed7323, #ff8c42);
}

.feature-icon.history[b-2l9db2zq0u] {
    background: linear-gradient(135deg, #8b5cf6, #a78bfa);
}

.feature-icon.askme[b-2l9db2zq0u] {
    background: linear-gradient(135deg, #10b981, #34d399);
}

.feature-icon.analytics[b-2l9db2zq0u] {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
}

.feature-icon.exams[b-2l9db2zq0u] {
    background: linear-gradient(135deg, #ef4444, #f87171);
}

.feature-box h3[b-2l9db2zq0u] {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 12px;
}

.feature-box p[b-2l9db2zq0u] {
    font-size: 14px;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

.feature-description[b-2l9db2zq0u] {
    font-size: 14px;
    color: #475569;
    line-height: 1.7;
}

/* Tips Section */
.tips-section[b-2l9db2zq0u] {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-radius: 16px;
    padding: 32px;
    border-left: 4px solid #0c57f0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.tips-title[b-2l9db2zq0u] {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.tips-title i[b-2l9db2zq0u] {
    color: #fbbf24;
    font-size: 24px;
}

.tips-list[b-2l9db2zq0u] {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tips-list li[b-2l9db2zq0u] {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: #334155;
    line-height: 1.6;
    padding-left: 28px;
    position: relative;
}

.tips-list li[b-2l9db2zq0u]::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 2px;
    width: 20px;
    height: 20px;
    background: #0c57f0;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.tips-list li strong[b-2l9db2zq0u] {
    color: #0f172a;
    font-weight: 600;
}

/* Footer Note */
.footer-note[b-2l9db2zq0u] {
    margin-top: 16px;
    font-size: 13px;
    color: #64748b;
    font-style: italic;
}

/* Welcome Footer */
.welcome-footer[b-2l9db2zq0u] {
    padding: 0 48px 48px;
    text-align: center;
}

.cta-button[b-2l9db2zq0u] {
    background: linear-gradient(135deg, #0c57f0, #1b6ec2);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 16px 48px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(12, 87, 240, 0.3);
}

.cta-button:hover[b-2l9db2zq0u] {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(12, 87, 240, 0.4);
}

.cta-button i[b-2l9db2zq0u] {
    transition: transform 0.3s ease;
}

.cta-button:hover i[b-2l9db2zq0u] {
    transform: translateX(4px);
}

/* Animations */
@keyframes fadeIn-b-2l9db2zq0u {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp-b-2l9db2zq0u {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn-b-2l9db2zq0u {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

.slide-in-right[b-2l9db2zq0u] {
    animation: slideInRight-b-2l9db2zq0u 0.3s ease-out;
}

.slide-in-left[b-2l9db2zq0u] {
    animation: slideInLeft-b-2l9db2zq0u 0.3s ease-out;
}

.slide-out-left[b-2l9db2zq0u] {
    animation: slideOutLeft-b-2l9db2zq0u 0.2s ease-in;
}

.slide-out-right[b-2l9db2zq0u] {
    animation: slideOutRight-b-2l9db2zq0u 0.2s ease-in;
}

@keyframes slideInRight-b-2l9db2zq0u {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft-b-2l9db2zq0u {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideOutLeft-b-2l9db2zq0u {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(-30px);
    }
}

@keyframes slideOutRight-b-2l9db2zq0u {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(30px);
    }
}

/* Responsive */
@media (min-width: 1200px) {
    .tour-message[b-2l9db2zq0u] {
        min-width: 900px;
    }
}

@media (max-width: 1024px) {
    .tour-message[b-2l9db2zq0u] {
        min-width: auto;
        width: min(92vw, 760px);
        max-width: 760px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .welcome-modal[b-2l9db2zq0u] {
        border-radius: 20px;
        max-height: 95vh;
    }

    .close-btn[b-2l9db2zq0u] {
        top: 16px;
        right: 16px;
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .welcome-header[b-2l9db2zq0u] {
        padding: 48px 24px 32px;
    }

    .logo-container img[b-2l9db2zq0u] {
        width: 64px;
        height: 64px;
    }

    .welcome-header h1[b-2l9db2zq0u] {
        font-size: 24px;
    }

    .welcome-header .subtitle[b-2l9db2zq0u] {
        font-size: 16px;
    }

    .welcome-body[b-2l9db2zq0u] {
        padding: 0 24px 32px;
    }

    .video-container-modern[b-2l9db2zq0u] {
        height: 240px;
        margin-bottom: 32px;
    }

    .walkthrough-section[b-2l9db2zq0u] {
        padding: 20px;
        margin-bottom: 24px;
    }

    .section-title[b-2l9db2zq0u] {
        font-size: 20px;
        flex-direction: column;
        gap: 8px;
    }

    .section-title i[b-2l9db2zq0u] {
        font-size: 24px;
    }

    .intro-text[b-2l9db2zq0u] {
        font-size: 14px;
    }

    .features-grid[b-2l9db2zq0u] {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 24px;
    }

    .feature-box[b-2l9db2zq0u] {
        padding: 20px 18px;
    }

    .feature-icon[b-2l9db2zq0u] {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .feature-box h3[b-2l9db2zq0u] {
        font-size: 17px;
    }

    .feature-box p[b-2l9db2zq0u] {
        font-size: 13px;
    }

    .tips-section[b-2l9db2zq0u] {
        padding: 24px 20px;
    }

    .tips-title[b-2l9db2zq0u] {
        font-size: 18px;
        flex-direction: row;
        justify-content: flex-start;
    }

    .tips-list[b-2l9db2zq0u] {
        gap: 14px;
    }

    .tips-list li[b-2l9db2zq0u] {
        font-size: 14px;
        padding-left: 24px;
    }

    .tips-list li[b-2l9db2zq0u]::before {
        width: 18px;
        height: 18px;
        font-size: 11px;
    }

    .welcome-footer[b-2l9db2zq0u] {
        padding: 0 24px 32px;
    }

    .cta-button[b-2l9db2zq0u] {
        width: 100%;
        justify-content: center;
        padding: 14px 32px;
        font-size: 15px;
    }

    .footer-note[b-2l9db2zq0u] {
        font-size: 12px;
        margin-top: 12px;
    }

    .tour-message[b-2l9db2zq0u] {
        max-width: 100%;
        border-radius: var(--radius, 16px);
        width: 95vw;
        min-width: auto;
    }

    .tour-header[b-2l9db2zq0u] {
        flex-direction: column;
        text-align: center;
    }

    .tour-branding[b-2l9db2zq0u] {
        flex-direction: column;
    }

    .tour-header-progress[b-2l9db2zq0u] {
        width: 100%;
    }

    .tour-content[b-2l9db2zq0u] {
        padding: 20px;
    }

    .tour-step-main[b-2l9db2zq0u] {
        flex-direction: column;
        text-align: center;
    }

    .tour-step-bottom[b-2l9db2zq0u] {
        flex-direction: column;
    }

    .tour-actions[b-2l9db2zq0u] {
        flex-direction: column;
    }

    .btn[b-2l9db2zq0u] {
        width: 100%;
        justify-content: center;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .welcome-modal[b-2l9db2zq0u] {
        max-width: 760px;
    }

    .video-container-modern[b-2l9db2zq0u] {
        height: 400px;
    }

    .walkthrough-section[b-2l9db2zq0u] {
        padding: 20px;
    }

    .section-title[b-2l9db2zq0u] {
        font-size: 22px;
    }

    .features-grid[b-2l9db2zq0u] {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .feature-box[b-2l9db2zq0u] {
        padding: 24px 20px;
    }

    .tips-section[b-2l9db2zq0u] {
        padding: 28px;
    }
}
/* /Components/WelcomeGuide.razor.rz.scp.css */
/* Welcome Overlay - Modern Design */
.welcome-overlay[b-9msbssjxy6] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(12px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn-b-9msbssjxy6 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.welcome-modal[b-9msbssjxy6] {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    max-width: 920px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp-b-9msbssjxy6 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Custom Scrollbar */
.welcome-modal[b-9msbssjxy6]::-webkit-scrollbar {
    width: 8px;
}

.welcome-modal[b-9msbssjxy6]::-webkit-scrollbar-track {
    background: transparent;
}

.welcome-modal[b-9msbssjxy6]::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

.welcome-modal[b-9msbssjxy6]::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

.close-btn[b-9msbssjxy6] {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    color: #64748b;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.2s ease;
    z-index: 10;
}

.close-btn:hover[b-9msbssjxy6] {
    background: rgba(0, 0, 0, 0.1);
    color: #334155;
    transform: scale(1.05);
}

.welcome-header[b-9msbssjxy6] {
    text-align: center;
    padding: 56px 48px 40px;
}

.logo-container[b-9msbssjxy6] {
    margin-bottom: 24px;
}

.logo-container img[b-9msbssjxy6] {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.welcome-header h1[b-9msbssjxy6] {
    font-size: 32px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 12px;
    letter-spacing: -0.02em;
}

.welcome-header .subtitle[b-9msbssjxy6] {
    font-size: 18px;
    color: #64748b;
    margin: 0;
    font-weight: 400;
}

/* Tour Message Shell */
.tour-message[b-9msbssjxy6] {
    background: #ffffff;
    border-radius: var(--radius, 16px);
    box-shadow: 0 24px 65px rgba(15, 23, 42, 0.35);
    width: min(80vw, 1100px);
    max-width: 1100px;
    min-width: 320px;
    max-height: 92vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: scaleIn-b-9msbssjxy6 0.3s ease-out;
    position: relative;
}

/* Header */
.tour-header[b-9msbssjxy6] {
    background: linear-gradient(135deg, var(--brand-primary, #0c57f0), var(--brand-secondary, #1b6ec2));
    color: #ffffff;
    padding: 24px 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
}

.tour-branding[b-9msbssjxy6] {
    display: flex;
    align-items: center;
    gap: 18px;
    flex: 1 1 320px;
}

.tour-logo[b-9msbssjxy6] {
    width: 72px;
    height: 72px;
    object-fit: contain;
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.2));
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px;
}

.tour-header-text h2[b-9msbssjxy6] {
    margin: 6px 0;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.tour-header-text h3[b-9msbssjxy6] {
    margin: 6px 0;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tour-header-text p[b-9msbssjxy6] {
    margin: 0;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
}

.tour-pill[b-9msbssjxy6] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-badge, 20px);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.accent-pill[b-9msbssjxy6] {
    background: linear-gradient(135deg, var(--brand-accent, #ed7323), #ff8c42);
    color: #ffffff;
}

.subtle-pill[b-9msbssjxy6] {
    background: rgba(12, 87, 240, 0.08);
    color: var(--brand-primary, #0c57f0);
    padding: 4px 10px;
}

.tour-header-progress[b-9msbssjxy6] {
    flex: 1 1 220px;
    min-width: 220px;
}

.step-indicator[b-9msbssjxy6] {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.step-label[b-9msbssjxy6] {
    opacity: 0.8;
}

.step-current[b-9msbssjxy6] {
    font-size: 28px;
    font-weight: 700;
}

.step-total[b-9msbssjxy6] {
    opacity: 0.8;
}

.tour-progress-track[b-9msbssjxy6] {
    margin-top: 8px;
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    overflow: hidden;
}

.tour-progress-fill[b-9msbssjxy6] {
    display: block;
    height: 100%;
    background: linear-gradient(135deg, var(--brand-accent, #ed7323), #ffb347);
    transition: width 0.3s ease;
}

/* Content */
.tour-content[b-9msbssjxy6] {
    flex: 1;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    overflow-y: auto;
}

.tour-welcome-layout[b-9msbssjxy6] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.welcome-copy[b-9msbssjxy6] {
    background: var(--light-gray, #f8f9fa);
    border-radius: var(--radius, 16px);
    padding: 24px;
    box-shadow: 0 2px 12px rgba(12, 87, 240, 0.08);
}

.welcome-copy h2[b-9msbssjxy6] {
    margin: 12px 0 8px;
    font-size: 28px;
    color: var(--text-primary, #333333);
}

.welcome-copy p[b-9msbssjxy6] {
    margin: 0 0 20px;
    color: var(--text-secondary, #666666);
    line-height: 1.6;
}

.tour-checklist[b-9msbssjxy6] {
    list-style: none;
    margin: 0 0 20px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tour-checklist li[b-9msbssjxy6] {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--text-primary, #333333);
}

.tour-checklist i[b-9msbssjxy6] {
    color: var(--brand-primary, #0c57f0);
}

.tour-meta[b-9msbssjxy6] {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.meta-item[b-9msbssjxy6] {
    flex: 1 1 120px;
    background: #ffffff;
    border: 1px solid var(--border-color, #dee2e6);
    border-radius: var(--radius, 16px);
    padding: 12px 16px;
    box-shadow: 0 2px 10px rgba(12, 87, 240, 0.08);
}

.meta-value[b-9msbssjxy6] {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--brand-primary, #0c57f0);
}

.meta-label[b-9msbssjxy6] {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-secondary, #666666);
}

.welcome-grid[b-9msbssjxy6] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
}

.welcome-card[b-9msbssjxy6] {
    background: #ffffff;
    border-radius: var(--radius, 16px);
    padding: 20px;
    border-left: 4px solid var(--brand-accent, #ed7323);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.welcome-card i[b-9msbssjxy6] {
    font-size: 20px;
    color: var(--brand-accent, #ed7323);
}

.welcome-card h4[b-9msbssjxy6] {
    margin: 10px 0 6px;
    font-size: 18px;
    color: var(--text-primary, #333333);
}

.welcome-card p[b-9msbssjxy6] {
    margin: 0;
    color: var(--text-secondary, #666666);
    line-height: 1.4;
}

.tour-step-layout[b-9msbssjxy6] {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tour-step-main[b-9msbssjxy6] {
    display: flex;
    gap: 20px;
    align-items: center;
}

.step-icon[b-9msbssjxy6] {
    width: 88px;
    height: 88px;
    border-radius: var(--radius, 16px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #ffffff;
    box-shadow: 0 12px 30px rgba(12, 87, 240, 0.25);
}

.step-copy h3[b-9msbssjxy6] {
    margin: 10px 0 6px;
    font-size: 26px;
    color: var(--text-primary, #333333);
}

.step-copy p[b-9msbssjxy6] {
    margin: 0;
    color: var(--text-secondary, #666666);
    line-height: 1.6;
}

.accent-dashboard[b-9msbssjxy6] { background: linear-gradient(135deg, #0c57f0, #1b6ec2); }
.accent-lessons[b-9msbssjxy6] { background: linear-gradient(135deg, #ed7323, #ff8c42); }
.accent-tutor[b-9msbssjxy6] { background: linear-gradient(135deg, #1cc8ee, #0c57f0); }
.accent-exam[b-9msbssjxy6] { background: linear-gradient(135deg, #28a745, #50c76f); }
.accent-history[b-9msbssjxy6] { background: linear-gradient(135deg, #fa709a, #fee140); }
.accent-account[b-9msbssjxy6] { background: linear-gradient(135deg, #8e54e9, #4776e6); }

.feature-grid[b-9msbssjxy6] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.feature-card[b-9msbssjxy6] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-radius: var(--radius, 16px);
    background: var(--light-gray, #f8f9fa);
    border: 1px solid var(--border-color, #dee2e6);
    font-weight: 600;
    color: var(--text-primary, #333333);
}

.feature-card i[b-9msbssjxy6] {
    color: var(--brand-primary, #0c57f0);
}

.tour-step-bottom[b-9msbssjxy6] {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.tour-tip-card[b-9msbssjxy6] {
    flex: 1 1 260px;
    background: linear-gradient(135deg, var(--brand-accent, #ed7323), #ff8c42);
    border-radius: var(--radius, 16px);
    color: #ffffff;
    padding: 20px 24px;
    box-shadow: 0 10px 25px rgba(237, 115, 35, 0.35);
}

.tip-label[b-9msbssjxy6] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    margin-bottom: 8px;
}

.tour-tip-card p[b-9msbssjxy6] {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
}

.tour-microcopy[b-9msbssjxy6] {
    flex: 1 1 200px;
    border-radius: var(--radius, 16px);
    border: 1px dashed var(--brand-secondary, #1b6ec2);
    padding: 16px 18px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: var(--brand-secondary, #1b6ec2);
    background: rgba(27, 110, 194, 0.08);
}

.tour-next-card[b-9msbssjxy6] {
    border-radius: var(--radius, 16px);
    border: 1px dashed var(--brand-primary, #0c57f0);
    padding: 18px 20px;
    background: #ffffff;
    box-shadow: inset 0 0 0 1px rgba(12, 87, 240, 0.08);
}

.next-label[b-9msbssjxy6] {
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--brand-primary, #0c57f0);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.next-title[b-9msbssjxy6] {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary, #333333);
}

.tour-next-card p[b-9msbssjxy6] {
    margin: 4px 0 0;
    color: var(--text-secondary, #666666);
}

/* Actions */
.tour-actions[b-9msbssjxy6] {
    padding: 20px 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    border-top: 1px solid var(--border-color, #dee2e6);
    background: #ffffff;
}

.btn[b-9msbssjxy6] {
    padding: 12px 24px;
    border-radius: var(--radius, 16px);
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary[b-9msbssjxy6] {
    background: linear-gradient(135deg, var(--brand-primary, #0c57f0), var(--brand-secondary, #1b6ec2));
    color: #ffffff;
    box-shadow: 0 6px 18px rgba(12, 87, 240, 0.4);
}

.btn-primary:hover[b-9msbssjxy6] {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(12, 87, 240, 0.45);
}

.btn-outline[b-9msbssjxy6] {
    background: transparent;
    color: var(--brand-secondary, #1b6ec2);
    border: 2px solid var(--brand-secondary, #1b6ec2);
}

.btn-outline:hover[b-9msbssjxy6] {
    background: var(--brand-secondary, #1b6ec2);
    color: #ffffff;
}

.btn-skip[b-9msbssjxy6] {
    background: transparent;
    color: var(--text-secondary, #666666);
    border: 1px solid var(--border-color, #dee2e6);
}

.btn-skip:hover[b-9msbssjxy6] {
    background: var(--light-gray, #f8f9fa);
    color: var(--text-primary, #333333);
}

/* Progress dots */
.tour-progress[b-9msbssjxy6] {
    padding: 16px 0 24px;
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
}

.progress-dot[b-9msbssjxy6] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--medium-gray, #e9ecef);
    transition: all 0.3s ease;
}

.progress-dot.active[b-9msbssjxy6] {
    width: 36px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--brand-primary, #0c57f0), var(--brand-secondary, #1b6ec2));
}

.progress-dot.completed[b-9msbssjxy6] {
    background: var(--brand-primary, #0c57f0);
    opacity: 0.85;
}

/* Welcome Body */
.welcome-body[b-9msbssjxy6] {
    padding: 0 48px 48px;
}

.video-container-modern[b-9msbssjxy6] {
    position: relative;
    width: 100%;
    height: 480px;
    border-radius: 16px;
    overflow: hidden;
    background: #000;
    margin-bottom: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.video-container-modern iframe[b-9msbssjxy6] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Walkthrough Section */
.walkthrough-section[b-9msbssjxy6] {
    text-align: center;
    margin-bottom: 32px;
    padding: 24px;
    background: linear-gradient(135deg, rgba(12, 87, 240, 0.05), rgba(27, 110, 194, 0.05));
    border-radius: 16px;
    border: 2px solid rgba(12, 87, 240, 0.1);
}

.section-title[b-9msbssjxy6] {
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.section-title i[b-9msbssjxy6] {
    color: #0c57f0;
    font-size: 28px;
}

.intro-text[b-9msbssjxy6] {
    font-size: 16px;
    color: #475569;
    margin: 0;
    line-height: 1.6;
}

/* Features Grid */
.features-grid[b-9msbssjxy6] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.feature-box[b-9msbssjxy6] {
    text-align: left;
    padding: 28px 24px;
    background: #ffffff;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 2px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.feature-box:hover[b-9msbssjxy6] {
    border-color: #0c57f0;
    box-shadow: 0 8px 24px rgba(12, 87, 240, 0.15);
    transform: translateY(-4px);
}

.feature-icon[b-9msbssjxy6] {
    width: 56px;
    height: 56px;
    margin: 0 0 16px 0;
    background: linear-gradient(135deg, #0c57f0, #1b6ec2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(12, 87, 240, 0.25);
}

/* Feature Icon Colors */
.feature-icon.dashboard[b-9msbssjxy6] {
    background: linear-gradient(135deg, #0c57f0, #1b6ec2);
}

.feature-icon.lessons[b-9msbssjxy6] {
    background: linear-gradient(135deg, #ed7323, #ff8c42);
}

.feature-icon.history[b-9msbssjxy6] {
    background: linear-gradient(135deg, #8b5cf6, #a78bfa);
}

.feature-icon.askme[b-9msbssjxy6] {
    background: linear-gradient(135deg, #10b981, #34d399);
}

.feature-icon.analytics[b-9msbssjxy6] {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
}

.feature-icon.exams[b-9msbssjxy6] {
    background: linear-gradient(135deg, #ef4444, #f87171);
}

.feature-box h3[b-9msbssjxy6] {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 12px;
}

.feature-box p[b-9msbssjxy6] {
    font-size: 14px;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

.feature-description[b-9msbssjxy6] {
    font-size: 14px;
    color: #475569;
    line-height: 1.7;
}

/* Tips Section */
.tips-section[b-9msbssjxy6] {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-radius: 16px;
    padding: 32px;
    border-left: 4px solid #0c57f0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.tips-title[b-9msbssjxy6] {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.tips-title i[b-9msbssjxy6] {
    color: #fbbf24;
    font-size: 24px;
}

.tips-list[b-9msbssjxy6] {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tips-list li[b-9msbssjxy6] {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: #334155;
    line-height: 1.6;
    padding-left: 28px;
    position: relative;
}

.tips-list li[b-9msbssjxy6]::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 2px;
    width: 20px;
    height: 20px;
    background: #0c57f0;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.tips-list li strong[b-9msbssjxy6] {
    color: #0f172a;
    font-weight: 600;
}

/* Footer Note */
.footer-note[b-9msbssjxy6] {
    margin-top: 16px;
    font-size: 13px;
    color: #64748b;
    font-style: italic;
}

/* Welcome Footer */
.welcome-footer[b-9msbssjxy6] {
    padding: 0 48px 48px;
    text-align: center;
}

.cta-button[b-9msbssjxy6] {
    background: linear-gradient(135deg, #0c57f0, #1b6ec2);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 16px 48px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(12, 87, 240, 0.3);
}

.cta-button:hover[b-9msbssjxy6] {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(12, 87, 240, 0.4);
}

.cta-button i[b-9msbssjxy6] {
    transition: transform 0.3s ease;
}

.cta-button:hover i[b-9msbssjxy6] {
    transform: translateX(4px);
}

/* Animations */
@keyframes fadeIn-b-9msbssjxy6 {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp-b-9msbssjxy6 {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn-b-9msbssjxy6 {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

.slide-in-right[b-9msbssjxy6] {
    animation: slideInRight-b-9msbssjxy6 0.3s ease-out;
}

.slide-in-left[b-9msbssjxy6] {
    animation: slideInLeft-b-9msbssjxy6 0.3s ease-out;
}

.slide-out-left[b-9msbssjxy6] {
    animation: slideOutLeft-b-9msbssjxy6 0.2s ease-in;
}

.slide-out-right[b-9msbssjxy6] {
    animation: slideOutRight-b-9msbssjxy6 0.2s ease-in;
}

@keyframes slideInRight-b-9msbssjxy6 {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft-b-9msbssjxy6 {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideOutLeft-b-9msbssjxy6 {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(-30px);
    }
}

@keyframes slideOutRight-b-9msbssjxy6 {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(30px);
    }
}

/* Responsive */
@media (min-width: 1200px) {
    .tour-message[b-9msbssjxy6] {
        min-width: 900px;
    }
}

@media (max-width: 1024px) {
    .tour-message[b-9msbssjxy6] {
        min-width: auto;
        width: min(92vw, 760px);
        max-width: 760px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .welcome-modal[b-9msbssjxy6] {
        border-radius: 20px;
        max-height: 95vh;
    }

    .close-btn[b-9msbssjxy6] {
        top: 16px;
        right: 16px;
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .welcome-header[b-9msbssjxy6] {
        padding: 48px 24px 32px;
    }

    .logo-container img[b-9msbssjxy6] {
        width: 64px;
        height: 64px;
    }

    .welcome-header h1[b-9msbssjxy6] {
        font-size: 24px;
    }

    .welcome-header .subtitle[b-9msbssjxy6] {
        font-size: 16px;
    }

    .welcome-body[b-9msbssjxy6] {
        padding: 0 24px 32px;
    }

    .video-container-modern[b-9msbssjxy6] {
        height: 240px;
        margin-bottom: 32px;
    }

    .walkthrough-section[b-9msbssjxy6] {
        padding: 20px;
        margin-bottom: 24px;
    }

    .section-title[b-9msbssjxy6] {
        font-size: 20px;
        flex-direction: column;
        gap: 8px;
    }

    .section-title i[b-9msbssjxy6] {
        font-size: 24px;
    }

    .intro-text[b-9msbssjxy6] {
        font-size: 14px;
    }

    .features-grid[b-9msbssjxy6] {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 24px;
    }

    .feature-box[b-9msbssjxy6] {
        padding: 20px 18px;
    }

    .feature-icon[b-9msbssjxy6] {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .feature-box h3[b-9msbssjxy6] {
        font-size: 17px;
    }

    .feature-box p[b-9msbssjxy6] {
        font-size: 13px;
    }

    .tips-section[b-9msbssjxy6] {
        padding: 24px 20px;
    }

    .tips-title[b-9msbssjxy6] {
        font-size: 18px;
        flex-direction: row;
        justify-content: flex-start;
    }

    .tips-list[b-9msbssjxy6] {
        gap: 14px;
    }

    .tips-list li[b-9msbssjxy6] {
        font-size: 14px;
        padding-left: 24px;
    }

    .tips-list li[b-9msbssjxy6]::before {
        width: 18px;
        height: 18px;
        font-size: 11px;
    }

    .welcome-footer[b-9msbssjxy6] {
        padding: 0 24px 32px;
    }

    .cta-button[b-9msbssjxy6] {
        width: 100%;
        justify-content: center;
        padding: 14px 32px;
        font-size: 15px;
    }

    .footer-note[b-9msbssjxy6] {
        font-size: 12px;
        margin-top: 12px;
    }

    .tour-message[b-9msbssjxy6] {
        max-width: 100%;
        border-radius: var(--radius, 16px);
        width: 95vw;
        min-width: auto;
    }

    .tour-header[b-9msbssjxy6] {
        flex-direction: column;
        text-align: center;
    }

    .tour-branding[b-9msbssjxy6] {
        flex-direction: column;
    }

    .tour-header-progress[b-9msbssjxy6] {
        width: 100%;
    }

    .tour-content[b-9msbssjxy6] {
        padding: 20px;
    }

    .tour-step-main[b-9msbssjxy6] {
        flex-direction: column;
        text-align: center;
    }

    .tour-step-bottom[b-9msbssjxy6] {
        flex-direction: column;
    }

    .tour-actions[b-9msbssjxy6] {
        flex-direction: column;
    }

    .btn[b-9msbssjxy6] {
        width: 100%;
        justify-content: center;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .welcome-modal[b-9msbssjxy6] {
        max-width: 760px;
    }

    .video-container-modern[b-9msbssjxy6] {
        height: 400px;
    }

    .walkthrough-section[b-9msbssjxy6] {
        padding: 20px;
    }

    .section-title[b-9msbssjxy6] {
        font-size: 22px;
    }

    .features-grid[b-9msbssjxy6] {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .feature-box[b-9msbssjxy6] {
        padding: 24px 20px;
    }

    .tips-section[b-9msbssjxy6] {
        padding: 28px;
    }
}
/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-fzcu4ykqfj] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-fzcu4ykqfj] {
    flex: 1;
}

.sidebar[b-fzcu4ykqfj] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-fzcu4ykqfj] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-fzcu4ykqfj]  a, .top-row[b-fzcu4ykqfj]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-fzcu4ykqfj]  a:hover, .top-row[b-fzcu4ykqfj]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-fzcu4ykqfj]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-fzcu4ykqfj] {
        justify-content: space-between;
    }

    .top-row[b-fzcu4ykqfj]  a, .top-row[b-fzcu4ykqfj]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-fzcu4ykqfj] {
        flex-direction: row;
    }

    .sidebar[b-fzcu4ykqfj] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-fzcu4ykqfj] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-fzcu4ykqfj]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-fzcu4ykqfj], article[b-fzcu4ykqfj] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* /Pages/Account.razor.rz.scp.css */
/* ===== ACCOUNT PAGE STYLES ===== */
/* Modern, clean design following KSOL theme guidelines */

/* Page Header */
.page-header[b-9kg8kl7uda] {
    background: linear-gradient(135deg, #0c57f0, #1b6ec2);
    border-radius: 10px;
    padding: 16px 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 16px rgba(12, 87, 240, 0.3);
    position: relative;
    overflow: hidden;
}

.page-header[b-9kg8kl7uda]::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.page-header-content[b-9kg8kl7uda] {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.page-title[b-9kg8kl7uda] {
    font-size: 28px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-family);
}

.page-icon[b-9kg8kl7uda] {
    font-size: 26px;
    color: rgba(255, 255, 255, 0.95);
}

.page-description[b-9kg8kl7uda] {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin: 4px 0 0 0;
    font-weight: 400;
    font-family: var(--font-family);
}

/* Account Summary */
.account-summary[b-9kg8kl7uda] {
    display: flex;
    gap: 16px;
}

.summary-item[b-9kg8kl7uda] {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 10px 16px;
    text-align: center;
    min-width: 100px;
}

.summary-number[b-9kg8kl7uda] {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 4px;
    font-family: var(--font-family);
}

.summary-label[b-9kg8kl7uda] {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: var(--font-family);
}

/* Panel Titles */
.panel-title[b-9kg8kl7uda] {
    font-weight: 600;
    color: #333;
    margin-bottom: 24px;
    font-size: 20px;
    font-family: var(--font-family);
}

.panel-title i.panel-icon[b-9kg8kl7uda] {
    color: var(--brand-primary);
    margin-right: 8px;
}

/* Profile Information */
.profile-info[b-9kg8kl7uda] {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding: 16px 0;
}

.profile-avatar[b-9kg8kl7uda] {
    flex-shrink: 0;
}

.avatar-circle[b-9kg8kl7uda] {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0c57f0, #1b6ec2);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(12, 87, 240, 0.3);
    position: relative;
}

.avatar-circle[b-9kg8kl7uda]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 100%);
    pointer-events: none;
}

.avatar-text[b-9kg8kl7uda] {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    font-family: var(--font-family);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
    position: relative;
    z-index: 1;
}

.profile-details[b-9kg8kl7uda] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.detail-row[b-9kg8kl7uda] {
    display: grid;
    grid-template-columns: 220px 1fr;
    align-items: center;
    gap: 8px 16px;
    padding: 12px 0;
    border-bottom: 1px solid #e9ecef;
}

.detail-label[b-9kg8kl7uda] {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 700;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    font-family: var(--font-family);
}

.detail-label i[b-9kg8kl7uda] {
    color: #ffffff;
    background: linear-gradient(135deg, #0c57f0, #1b6ec2);
    font-size: 12px;
    width: 22px;
    height: 22px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(12, 87, 240, 0.25);
}

.detail-value[b-9kg8kl7uda] {
    font-size: 16px;
    font-weight: 600;
    color: #333333;
    font-family: var(--font-family);
}

/* Panel Header with Back Button */
.panel-header-with-back[b-9kg8kl7uda] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid #e9ecef;
}

.btn-back[b-9kg8kl7uda] {
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
}

.btn-back:hover[b-9kg8kl7uda] {
    transform: translateX(-2px);
}

/* Form Container */
.form-container[b-9kg8kl7uda] {
    padding: 8px 0;
}

.form-group[b-9kg8kl7uda] {
    margin-bottom: 24px;
}

.form-label[b-9kg8kl7uda] {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: var(--font-family);
}

.form-label i[b-9kg8kl7uda] {
    color: #0c57f0;
    font-size: 14px;
}

.form-control[b-9kg8kl7uda] {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 14px;
    font-family: var(--font-family);
    transition: all 0.2s ease;
}

.form-control:focus[b-9kg8kl7uda] {
    outline: none;
    border-color: #0c57f0;
    box-shadow: 0 0 0 3px rgba(12, 87, 240, 0.1);
}

/* Toggle Switch */
.toggle-label[b-9kg8kl7uda] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 0;
    cursor: pointer;
    transition: all 0.2s ease;
}

.toggle-label:hover[b-9kg8kl7uda] {
    background: #e9ecef;
}

.toggle-text[b-9kg8kl7uda] {
    display: flex;
    align-items: center;
    gap: 8px;
}

.toggle-switch[b-9kg8kl7uda] {
    position: relative;
    width: 50px;
    height: 26px;
}

.toggle-switch input[type="checkbox"][b-9kg8kl7uda] {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider[b-9kg8kl7uda] {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.3s;
    border-radius: 26px;
}

.toggle-slider[b-9kg8kl7uda]:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.toggle-switch input:checked + .toggle-slider[b-9kg8kl7uda] {
    background: linear-gradient(135deg, #0c57f0, #1b6ec2);
}

.toggle-switch input:checked + .toggle-slider[b-9kg8kl7uda]:before {
    transform: translateX(24px);
}

/* Password Strength Indicator */
.password-strength[b-9kg8kl7uda] {
    margin-top: 12px;
}

.strength-bar[b-9kg8kl7uda] {
    width: 100%;
    height: 6px;
    background: #e9ecef;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 6px;
}

.strength-fill[b-9kg8kl7uda] {
    height: 100%;
    transition: all 0.3s ease;
    border-radius: 10px;
}

.strength-fill.weak[b-9kg8kl7uda] {
    background: linear-gradient(90deg, #dc3545, #e74c3c);
}

.strength-fill.medium[b-9kg8kl7uda] {
    background: linear-gradient(90deg, #ffc107, #f39c12);
}

.strength-fill.strong[b-9kg8kl7uda] {
    background: linear-gradient(90deg, #28a745, #20c997);
}

.strength-text[b-9kg8kl7uda] {
    font-size: 12px;
    font-weight: 600;
    color: #666666;
    font-family: var(--font-family);
}

/* Password Requirements List */
.password-requirements[b-9kg8kl7uda] {
    list-style: none;
    padding: 12px 16px;
    margin: 12px 0 0 0;
    background: #f8f9fa;
    border-radius: 8px;
    font-size: 13px;
    font-family: var(--font-family);
}

.password-requirements li[b-9kg8kl7uda] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    color: #6c757d;
    transition: color 0.2s ease;
}

.password-requirements li i[b-9kg8kl7uda] {
    font-size: 14px;
    color: #ced4da;
}

.password-requirements li.valid[b-9kg8kl7uda] {
    color: #28a745;
}

.password-requirements li.valid i[b-9kg8kl7uda] {
    color: #28a745;
}

/* Alerts */
.alert[b-9kg8kl7uda] {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-family: var(--font-family);
}

.alert-success[b-9kg8kl7uda] {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-danger[b-9kg8kl7uda] {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert i[b-9kg8kl7uda] {
    font-size: 16px;
}

/* Form Actions */
.form-actions[b-9kg8kl7uda] {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.form-actions .btn[b-9kg8kl7uda] {
    flex: 1;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.form-actions .btn-primary[b-9kg8kl7uda] {
    background: linear-gradient(135deg, #0c57f0, #1b6ec2);
    border: none;
    color: #ffffff;
}

.form-actions .btn-primary:hover:not(:disabled)[b-9kg8kl7uda] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(12, 87, 240, 0.3);
}

.form-actions .btn-primary:disabled[b-9kg8kl7uda] {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-actions .btn-secondary[b-9kg8kl7uda] {
    background: #6c757d;
    border: none;

}

.form-actions .btn-secondary:hover[b-9kg8kl7uda] {
    background: #5a6268;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(108, 117, 125, 0.3);
}

/* Account Actions */
.action-buttons[b-9kg8kl7uda] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.account-btn[b-9kg8kl7uda] {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    font-family: var(--font-family);
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.account-btn i[b-9kg8kl7uda] {
    font-size: 16px;
}

.account-btn.btn-outline-primary[b-9kg8kl7uda] {
    border: 2px solid #0c57f0;
    color: #0c57f0;
    background: transparent;
}

.account-btn.btn-outline-primary:hover:not(:disabled)[b-9kg8kl7uda] {
    background: #0c57f0;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(12, 87, 240, 0.3);
}

.account-btn.btn-outline-secondary[b-9kg8kl7uda] {
    border: 2px solid #6c757d;
    color: #6c757d;
    background: transparent;
}

.account-btn.btn-outline-secondary:hover:not(:disabled)[b-9kg8kl7uda] {
    background: #6c757d;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(108, 117, 125, 0.3);
}

.account-btn.btn-outline-info[b-9kg8kl7uda] {
    border: 2px solid #0b5ed7;
    color: #0b5ed7;
    background: transparent;
}

.account-btn.btn-outline-info:hover:not(:disabled)[b-9kg8kl7uda] {
    background: #0b5ed7;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(11, 94, 215, 0.3);
}

.account-btn.btn-outline-warning[b-9kg8kl7uda] {
    border: 2px solid #ffc107;
    color: #ffc107;
    background: transparent;
}

.account-btn.btn-outline-warning:hover:not(:disabled)[b-9kg8kl7uda] {
    background: #ffc107;
    color: #212529;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
}

.account-btn.btn-danger[b-9kg8kl7uda] {
    border: 2px solid #dc3545;
    color: #dc3545;
    background: transparent;
}

.account-btn.btn-danger:hover:not(:disabled)[b-9kg8kl7uda] {
    background: #dc3545;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

.account-btn:disabled[b-9kg8kl7uda] {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

.account-btn:disabled:hover[b-9kg8kl7uda] {
    transform: none !important;
    box-shadow: none !important;
}

/* Quick Stats */
.stats-grid[b-9kg8kl7uda] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.stat-item[b-9kg8kl7uda] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.stat-item:hover[b-9kg8kl7uda] {
    background: #e9ecef;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.stat-icon[b-9kg8kl7uda] {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, #0c57f0, #1b6ec2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon i[b-9kg8kl7uda] {
    color: #ffffff;
    font-size: 16px;
}

.stat-content[b-9kg8kl7uda] {
    flex: 1;
}

.stat-number[b-9kg8kl7uda] {
    font-size: 20px;
    font-weight: 700;
    color: #333333;
    line-height: 1;
    margin-bottom: 2px;
    font-family: var(--font-family);
}

.stat-label[b-9kg8kl7uda] {
    font-size: 12px;
    font-weight: 600;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: var(--font-family);
}

/* Empty State */
.empty-state[b-9kg8kl7uda] {
    text-align: center;
    padding: 40px 20px;
    color: #666666;
}

.empty-state-icon[b-9kg8kl7uda] {
    font-size: 48px;
    color: #e9ecef;
    margin-bottom: 16px;
}

.empty-state-text[b-9kg8kl7uda] {
    font-size: 16px;
    color: #666666;
    font-family: var(--font-family);
}

/* Loading State */
.loading-container[b-9kg8kl7uda] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    gap: 16px;
}

.spinner-primary[b-9kg8kl7uda] {
    border-color: #0c57f0;
    border-right-color: transparent;
}

.loading-text[b-9kg8kl7uda] {
    font-size: 16px;
    font-weight: 600;
    color: #666666;
    margin: 0;
    font-family: var(--font-family);
}

/* Responsive Design */
@media (max-width: 991px) {
    .page-header-content[b-9kg8kl7uda] {
        flex-direction: column;
        align-items: flex-start;
    }

    .page-title[b-9kg8kl7uda] {
        font-size: 22px;
    }

    .page-icon[b-9kg8kl7uda] {
        font-size: 24px;
    }

    .account-summary[b-9kg8kl7uda] {
        width: 100%;
        justify-content: center;
    }

    .profile-info[b-9kg8kl7uda] {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .profile-details[b-9kg8kl7uda] {
        align-items: stretch;
        width: 100%;
    }

    .stats-grid[b-9kg8kl7uda] {
        grid-template-columns: 1fr;
    }

    .detail-row[b-9kg8kl7uda] {
        grid-template-columns: 1fr;
    }

    .form-actions[b-9kg8kl7uda] {
        flex-direction: column;
    }

    .form-actions .btn[b-9kg8kl7uda] {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .page-header[b-9kg8kl7uda] {
        padding: 14px 16px;
    }

    .page-title[b-9kg8kl7uda] {
        font-size: 24px;
    }

    .page-icon[b-9kg8kl7uda] {
        font-size: 22px;
    }

    .avatar-circle[b-9kg8kl7uda] {
        width: 70px;
        height: 70px;
    }

    .avatar-text[b-9kg8kl7uda] {
        font-size: 24px;
    }

    .detail-row[b-9kg8kl7uda] {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .action-buttons[b-9kg8kl7uda] {
        gap: 10px;
    }

    .account-btn[b-9kg8kl7uda] {
        padding: 14px 16px;
    }

    .stat-item[b-9kg8kl7uda] {
        padding: 12px;
    }

    .stat-icon[b-9kg8kl7uda] {
        width: 36px;
        height: 36px;
    }

    .stat-icon i[b-9kg8kl7uda] {
        font-size: 14px;
    }

    .stat-number[b-9kg8kl7uda] {
        font-size: 18px;
    }

    .stat-label[b-9kg8kl7uda] {
        font-size: 11px;
    }
}

@media (max-width: 576px) {
    .page-header[b-9kg8kl7uda] {
        padding: 12px 14px;
    }

    .page-title[b-9kg8kl7uda] {
        font-size: 22px;
    }

    .page-icon[b-9kg8kl7uda] {
        font-size: 20px;
    }

    .account-summary[b-9kg8kl7uda] {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .summary-item[b-9kg8kl7uda] {
        width: 100%;
        padding: 8px 16px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .summary-number[b-9kg8kl7uda] {
        font-size: 20px;
    }

    .summary-label[b-9kg8kl7uda] {
        font-size: 11px;
    }

    .avatar-circle[b-9kg8kl7uda] {
        width: 60px;
        height: 60px;
    }

    .avatar-text[b-9kg8kl7uda] {
        font-size: 20px;
    }

    .profile-details[b-9kg8kl7uda] {
        gap: 12px;
    }

    .detail-value[b-9kg8kl7uda] {
        font-size: 14px;
    }

    .action-buttons[b-9kg8kl7uda] {
        gap: 8px;
    }

    .account-btn[b-9kg8kl7uda] {
        padding: 12px 14px;
        font-size: 14px;
    }

    .account-btn i[b-9kg8kl7uda] {
        font-size: 16px;
    }

    .stats-grid[b-9kg8kl7uda] {
        gap: 12px;
    }

    .stat-item[b-9kg8kl7uda] {
        padding: 10px;
        gap: 10px;
    }

    .stat-icon[b-9kg8kl7uda] {
        width: 32px;
        height: 32px;
    }

    .stat-icon i[b-9kg8kl7uda] {
        font-size: 12px;
    }

    .stat-number[b-9kg8kl7uda] {
        font-size: 16px;
    }

    .stat-label[b-9kg8kl7uda] {
        font-size: 10px;
    }

    .toggle-label[b-9kg8kl7uda] {
        padding: 12px;
        font-size: 12px;
    }

    .toggle-switch[b-9kg8kl7uda] {
        width: 46px;
        height: 24px;
    }

    .toggle-slider[b-9kg8kl7uda]:before {
        height: 18px;
        width: 18px;
    }

    .toggle-switch input:checked + .toggle-slider[b-9kg8kl7uda]:before {
        transform: translateX(22px);
    }

    .password-requirements[b-9kg8kl7uda] {
        font-size: 12px;
    }

    .form-actions[b-9kg8kl7uda] {
        flex-direction: column;
    }

    .form-actions .btn[b-9kg8kl7uda] {
        width: 100%;
        padding: 10px 20px;
    }
}

/* KS2 Theme Font Weight Override - Change all bold (700) to semi-bold (600) */
[data-theme="KS2"] .page-title[b-9kg8kl7uda],
[data-theme="[KS2]"] .page-title[b-9kg8kl7uda],
[data-theme="KS2"] .profile-section-title[b-9kg8kl7uda],
[data-theme="[KS2]"] .profile-section-title[b-9kg8kl7uda],
[data-theme="KS2"] .profile-name[b-9kg8kl7uda],
[data-theme="[KS2]"] .profile-name[b-9kg8kl7uda],
[data-theme="KS2"] .account-detail-value[b-9kg8kl7uda],
[data-theme="[KS2]"] .account-detail-value[b-9kg8kl7uda],
[data-theme="KS2"] .form-label[b-9kg8kl7uda],
[data-theme="[KS2]"] .form-label[b-9kg8kl7uda] {
    font-weight: 600 !important;
}

/* /Pages/AskMe.razor.rz.scp.css */
/* Theme Colors */
:root[b-3o3rpa2mf9] {
    --brand-primary: #0c57f0;
    --brand-secondary: #1b6ec2;
    --brand-accent: #ed7323;
    --success: #28a745;
    --danger: #dc3545;
    --warning: #fcfc4c;
    --info: #0b5ed7;
    --radius: 10px;
}

/* Global Font */
*[b-3o3rpa2mf9] {
    font-family: var(--font-family);
}

/* Dashboard Panels */
.dashboard-panel[b-3o3rpa2mf9] {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border-radius: var(--radius);
    background: #fff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.dashboard-panel:hover[b-3o3rpa2mf9] {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

/* Panel Titles */
.panel-title[b-3o3rpa2mf9] {
    font-weight: 600;
    color: #333;
    margin-bottom: 24px;
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-family);
}

.panel-icon[b-3o3rpa2mf9] {
    color: var(--brand-primary);
    font-size: 20px;
}

.panel-description[b-3o3rpa2mf9] {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 24px;
    text-align: center;
    font-family: var(--font-family);
}

/* Loading States */
.loading-container[b-3o3rpa2mf9] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 400px;
    gap: 16px;
}

.loading-text[b-3o3rpa2mf9] {
    color: #666;
    font-weight: 500;
    margin: 0;
    font-family: var(--font-family);
}

.spinner-primary[b-3o3rpa2mf9] {
    color: var(--brand-primary);
    width: 3rem;
    height: 3rem;
}

/* Empty State */
.empty-state[b-3o3rpa2mf9] {
    text-align: center;
    padding: 48px 20px;
    background: #f8f9fa;
    border-radius: var(--radius);
    margin-top: 20px;
}

.empty-state-icon[b-3o3rpa2mf9] {
    font-size: 48px;
    color: var(--brand-primary);
    margin-bottom: 16px;
}

.empty-state-text[b-3o3rpa2mf9] {
    color: #666;
    font-size: 16px;
    margin: 0;
    font-family: var(--font-family);
}

/* Questions List */
.questions-list[b-3o3rpa2mf9] {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 16px;
}

/* Question Cards */
.question-card[b-3o3rpa2mf9] {
    background: #f8f9fa !important;
    border-radius: var(--radius);
    padding: 20px;
    border-left: 4px solid var(--brand-primary) !important;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: var(--font-family);
}

.question-card.answered[b-3o3rpa2mf9] {
    border-left-color: var(--success) !important;
}

.question-card.pending[b-3o3rpa2mf9] {
    border-left-color: var(--warning) !important;
}

.question-card:hover[b-3o3rpa2mf9] {
    background: #e9ecef !important;
    transform: translateX(4px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.question-icon-wrapper[b-3o3rpa2mf9] {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.question-card.answered .question-icon-wrapper[b-3o3rpa2mf9] {
    background: linear-gradient(135deg, var(--success), #20c997);
}

.question-card.pending .question-icon-wrapper[b-3o3rpa2mf9] {
    background: linear-gradient(135deg, #ffc107, #ff9800);
}

.question-type-icon[b-3o3rpa2mf9] {
    color: white;
    font-size: 20px;
}

.question-content[b-3o3rpa2mf9] {
    flex: 1;
    min-width: 0;
}

.question-status[b-3o3rpa2mf9] {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.status-badge[b-3o3rpa2mf9] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    font-family: var(--font-family);
}

.answered-badge[b-3o3rpa2mf9] {
    background: var(--success);
    color: white;
}

.pending-badge[b-3o3rpa2mf9] {
    background: #ffc107;
    color: #333;
}

.question-date[b-3o3rpa2mf9] {
    color: #666;
    font-size: 13px;
    font-weight: 500;
    font-family: var(--font-family);
}

.question-title[b-3o3rpa2mf9] {
    color: #333;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 4px;
    font-family: var(--font-family);
}

.question-info[b-3o3rpa2mf9] {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    font-family: var(--font-family);
}

.question-actions[b-3o3rpa2mf9] {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.btn-icon[b-3o3rpa2mf9] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--brand-primary);
    color: var(--brand-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-icon:hover[b-3o3rpa2mf9] {
    background: var(--brand-primary);
    color: white;
    transform: scale(1.1);
}

.question-btn[b-3o3rpa2mf9] {
    background-color: var(--brand-primary) !important;
    color: #fff !important;
    border: none;
    border-radius: var(--radius);
    padding: 10px 20px;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(12, 87, 240, 0.2);
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-family);
}

.answered-btn[b-3o3rpa2mf9] {
    background-color: var(--success) !important;
}

.answered-btn:hover[b-3o3rpa2mf9] {
    background-color: #218838 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.pending-btn[b-3o3rpa2mf9] {
    background-color: #6c757d !important;
    cursor: not-allowed;
    opacity: 0.7;
}

.question-btn i[b-3o3rpa2mf9] {
    font-size: 14px;
}

/* Answer Panel */
.answer-panel[b-3o3rpa2mf9] {
    margin-top: 20px;
}

.answer-header[b-3o3rpa2mf9] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.answer-meta[b-3o3rpa2mf9] {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 12px;
}

.meta-item[b-3o3rpa2mf9] {
    color: #666;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-family);
}

.meta-item i[b-3o3rpa2mf9] {
    color: var(--brand-primary);
}

.meta-item strong[b-3o3rpa2mf9] {
    color: #333;
}

.answer-badge[b-3o3rpa2mf9] {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--success), #20c997);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.answer-badge i[b-3o3rpa2mf9] {
    font-size: 30px;
    color: white;
}

.video-title[b-3o3rpa2mf9] {
    color: #333;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 16px;
    font-family: var(--font-family);
}

.video-wrapper[b-3o3rpa2mf9] {
    padding: 56.25% 0 0 0;
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.answer-video[b-3o3rpa2mf9] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--radius);
}

.expert-notes[b-3o3rpa2mf9] {
    background: #f8f9fa;
    border-left: 4px solid var(--brand-accent);
    border-radius: var(--radius);
    padding: 20px;
}

.notes-title[b-3o3rpa2mf9] {
    color: var(--brand-accent);
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-family);
}

.notes-content[b-3o3rpa2mf9] {
    color: #333;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    font-family: var(--font-family);
}

/* Ask Form Panel */
.ask-form-panel[b-3o3rpa2mf9] {
    position: sticky;
    top: 20px;
}

.token-display-wrapper[b-3o3rpa2mf9] {
    margin-bottom: 24px;
}

/* Form Groups */
.form-group[b-3o3rpa2mf9] {
    margin-bottom: 20px;
}

.form-label[b-3o3rpa2mf9] {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 14px;
    font-family: var(--font-family);
}

.form-label i[b-3o3rpa2mf9] {
    color: var(--brand-primary);
    font-size: 16px;
}

.modern-input[b-3o3rpa2mf9],
.modern-select[b-3o3rpa2mf9],
.modern-textarea[b-3o3rpa2mf9] {
    width: 100%;
    padding: 12px;
    border: 2px solid #e9ecef;
    border-radius: var(--radius);
    font-size: 14px;
    transition: all 0.2s ease;
    font-family: var(--font-family);
}

.modern-input:focus[b-3o3rpa2mf9],
.modern-select:focus[b-3o3rpa2mf9],
.modern-textarea:focus[b-3o3rpa2mf9] {
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 3px rgba(12, 87, 240, 0.1);
    outline: none;
}

.modern-textarea[b-3o3rpa2mf9] {
    resize: vertical;
    min-height: 100px;
}

.char-count[b-3o3rpa2mf9] {
    display: block;
    text-align: right;
    color: #666;
    font-size: 12px;
    margin-top: 4px;
    font-family: var(--font-family);
}

.error-message[b-3o3rpa2mf9] {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--danger);
    font-size: 13px;
    margin-top: 8px;
    font-family: var(--font-family);
}

.alert-danger-modern[b-3o3rpa2mf9] {
    background: #f8d7da;
    border: 1px solid var(--danger);
    border-radius: var(--radius);
    padding: 12px;
    color: var(--danger);
    font-size: 14px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-family);
}

/* Form Check Modern */
.form-check-modern[b-3o3rpa2mf9] {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 16px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.2s ease;
}

.form-check-modern:hover[b-3o3rpa2mf9] {
    background: #e9ecef;
}

.form-check-modern input[type="checkbox"][b-3o3rpa2mf9] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
}

.form-check-label[b-3o3rpa2mf9] {
    flex: 1;
    color: #333;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-family);
}

.terms-check[b-3o3rpa2mf9] {
    background: #fff3cd;
    border: 1px solid #ffc107;
}

.terms-label[b-3o3rpa2mf9] {
    font-size: 13px;
    line-height: 1.5;
    font-family: var(--font-family);
}

.link-primary[b-3o3rpa2mf9] {
    color: var(--brand-primary);
    text-decoration: underline;
    font-weight: 600;
    font-family: var(--font-family);
}

.link-primary:hover[b-3o3rpa2mf9] {
    color: var(--brand-secondary);
}

/* Searchable Select Dropdown */
.searchable-select-wrapper[b-3o3rpa2mf9] {
    position: relative;
}

.search-input-container[b-3o3rpa2mf9] {
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon[b-3o3rpa2mf9] {
    position: absolute;
    left: 14px;
    color: #999;
    font-size: 14px;
    pointer-events: none;
}

.search-input[b-3o3rpa2mf9] {
    padding-left: 40px !important;
    padding-right: 40px !important;
    /* iOS-specific improvements */
    -webkit-appearance: none;
    appearance: none;
    font-size: 16px; /* Prevents zoom on iOS */
}

.clear-search-btn[b-3o3rpa2mf9] {
    position: absolute;
    right: 8px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #e9ecef;
    border: none;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.clear-search-btn:hover[b-3o3rpa2mf9] {
    background: #dee2e6;
    color: #333;
}

.selected-topic-chip[b-3o3rpa2mf9] {
    margin-top: 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    color: white;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    animation: slideIn-b-3o3rpa2mf9 0.3s ease;
    font-family: var(--font-family);
}

.selected-topic-chip i[b-3o3rpa2mf9] {
    font-size: 14px;
}

.remove-chip-btn[b-3o3rpa2mf9] {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 12px;
}

.remove-chip-btn:hover[b-3o3rpa2mf9] {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.topic-dropdown[b-3o3rpa2mf9] {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: white;
    border: 2px solid var(--brand-primary);
    border-radius: var(--radius);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    max-height: 400px;
    overflow-y: auto;
    animation: fadeInDown-b-3o3rpa2mf9 0.2s ease;
    /* iOS-specific improvements */
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
}

.topic-dropdown-header[b-3o3rpa2mf9] {
    padding: 12px 16px;
    border-bottom: 1px solid #e9ecef;
    background: #f8f9fa;
}

.topic-list[b-3o3rpa2mf9] {
    max-height: 320px;
    overflow-y: auto;
    /* iOS-specific improvements */
    -webkit-overflow-scrolling: touch;
}

.topic-item[b-3o3rpa2mf9] {
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f8f9fa;
    /* iOS-specific improvements */
    -webkit-tap-highlight-color: rgba(12, 87, 240, 0.1);
    touch-action: manipulation;
    user-select: none;
    -webkit-user-select: none;
}

.topic-item:hover[b-3o3rpa2mf9],
.topic-item:active[b-3o3rpa2mf9] {
    background: linear-gradient(90deg, rgba(12, 87, 240, 0.05), rgba(27, 110, 194, 0.05));
    padding-left: 20px;
}

.topic-item-icon[b-3o3rpa2mf9] {
    color: var(--brand-primary);
    font-size: 16px;
    flex-shrink: 0;
}

.topic-item-text[b-3o3rpa2mf9] {
    flex: 1;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font-family);
}

.topic-dropdown-footer[b-3o3rpa2mf9] {
    padding: 12px 16px;
    border-top: 1px solid #e9ecef;
    background: #f8f9fa;
}

.no-results[b-3o3rpa2mf9] {
    padding: 40px 20px;
    text-align: center;
    color: #999;
}

.no-results i[b-3o3rpa2mf9] {
    font-size: 48px;
    margin-bottom: 12px;
    opacity: 0.5;
}

.no-results p[b-3o3rpa2mf9] {
    margin: 0;
    font-size: 14px;
    font-family: var(--font-family);
}

/* Image Upload & Preview */
.upload-area[b-3o3rpa2mf9] {
    border: 2px dashed #e9ecef;
    border-radius: var(--radius);
    padding: 40px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.upload-area:hover[b-3o3rpa2mf9] {
    border-color: var(--brand-primary);
    background: rgba(12, 87, 240, 0.02);
}

.upload-area.dragging[b-3o3rpa2mf9] {
    border-color: var(--brand-primary);
    background: rgba(12, 87, 240, 0.08);
    transform: scale(1.02);
}

.upload-icon[b-3o3rpa2mf9] {
    font-size: 48px;
    color: var(--brand-primary);
    margin-bottom: 16px;
    display: block;
}

.upload-text[b-3o3rpa2mf9] {
    color: #333;
    font-size: 15px;
    margin: 0 0 8px 0;
    font-family: var(--font-family);
}

.upload-text strong[b-3o3rpa2mf9] {
    color: var(--brand-primary);
    font-weight: 600;
}

.hidden-file-input[b-3o3rpa2mf9] {
    display: none !important;
    visibility: hidden !important;
    position: absolute !important;
    width: 0 !important;
    height: 0 !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.image-preview-container[b-3o3rpa2mf9] {
    position: relative;
    margin-bottom: 16px;
    border-radius: var(--radius);
    overflow: hidden;
}

.preview-image-wrapper[b-3o3rpa2mf9] {
    position: relative;
}

.preview-image[b-3o3rpa2mf9] {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: block;
}

.preview-overlay[b-3o3rpa2mf9] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0;
    border-radius: var(--radius);
}

.preview-image-wrapper:hover .preview-overlay[b-3o3rpa2mf9] {
    background: rgba(0, 0, 0, 0.6);
    opacity: 1;
}

.btn-remove-image[b-3o3rpa2mf9] {
    background: var(--danger);
    color: white;
    border: none;
    border-radius: var(--radius);
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    font-weight: 600;
    font-size: 14px;
    font-family: var(--font-family);
}

.btn-remove-image:hover[b-3o3rpa2mf9] {
    background: #c82333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.4);
}

.file-hint[b-3o3rpa2mf9] {
    display: block;
    color: #999;
    font-size: 12px;
    font-family: var(--font-family);
    margin-top: 4px;
}

.file-hint i[b-3o3rpa2mf9] {
    color: var(--info);
}

.optimization-hint[b-3o3rpa2mf9] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: var(--success);
    font-size: 11px;
    margin-top: 8px;
    font-weight: 600;
    font-family: var(--font-family);
}

/* Upload Tabs */
.upload-tabs[b-3o3rpa2mf9] {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.upload-tab[b-3o3rpa2mf9] {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    background: white;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-family);
}

.upload-tab:hover[b-3o3rpa2mf9] {
    border-color: var(--brand-primary);
    color: var(--brand-primary);
    transform: translateY(-2px);
}

.upload-tab.active[b-3o3rpa2mf9] {
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    color: white;
    border-color: var(--brand-primary);
    box-shadow: 0 2px 8px rgba(12, 87, 240, 0.2);
}

.upload-tab i[b-3o3rpa2mf9] {
    font-size: 16px;
}

/* QR Upload Area */
.qr-upload-area[b-3o3rpa2mf9] {
    background: #f8f9fa;
    border-radius: var(--radius);
    padding: 24px;
    border: 2px solid #e9ecef;
}

.qr-instructions[b-3o3rpa2mf9] {
    margin-bottom: 24px;
}

.qr-instructions h4[b-3o3rpa2mf9] {
    color: #333;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-family);
}

.qr-instructions h4 i[b-3o3rpa2mf9] {
    color: var(--brand-accent);
    font-size: 24px;
}

.qr-instructions ol[b-3o3rpa2mf9] {
    margin: 0;
    padding-left: 20px;
    color: #666;
    font-size: 14px;
    line-height: 1.8;
    font-family: var(--font-family);
}

.qr-instructions li[b-3o3rpa2mf9] {
    margin-bottom: 8px;
}

.qr-code-container[b-3o3rpa2mf9] {
    background: white;
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    margin-bottom: 16px;
}

.qrImg[b-3o3rpa2mf9] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin: 0 auto;
}

.qrImg canvas[b-3o3rpa2mf9],
.qrImg img[b-3o3rpa2mf9] {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.qr-helper-text[b-3o3rpa2mf9] {
    color: #666;
    font-size: 13px;
    margin-top: 12px;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-family);
}

.qr-helper-text i[b-3o3rpa2mf9] {
    color: var(--brand-primary);
}

.mobile-upload-status[b-3o3rpa2mf9] {
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.waiting-indicator[b-3o3rpa2mf9] {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--brand-primary);
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-family);
}

.pulse-dot[b-3o3rpa2mf9] {
    width: 12px;
    height: 12px;
    background: var(--brand-primary);
    border-radius: 50%;
    animation: pulse-b-3o3rpa2mf9 1.5s ease-in-out infinite;
}

@keyframes pulse-b-3o3rpa2mf9 {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

/* Compression Badge */
.compression-badge[b-3o3rpa2mf9] {
    margin-top: 12px;
    padding: 8px 12px;
    background: linear-gradient(135deg, var(--success), #20c997);
    color: white;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    animation: slideIn-b-3o3rpa2mf9 0.3s ease;
    font-family: var(--font-family);
}

.compression-badge i[b-3o3rpa2mf9] {
    font-size: 14px;
}

/* Processing Overlay */
.processing-overlay[b-3o3rpa2mf9] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.processing-card[b-3o3rpa2mf9] {
    background: white;
    border-radius: var(--radius);
    padding: 40px;
    text-align: center;
    max-width: 320px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.processing-spinner[b-3o3rpa2mf9] {
    width: 64px;
    height: 64px;
    border: 4px solid #e9ecef;
    border-top-color: var(--brand-primary);
    border-radius: 50%;
    animation: spin-b-3o3rpa2mf9 1s linear infinite;
    margin: 0 auto 24px;
}

@keyframes spin-b-3o3rpa2mf9 {
    to { transform: rotate(360deg); }
}

.processing-card h3[b-3o3rpa2mf9] {
    font-size: 20px;
    font-weight: 600;
    color: #212529;
    margin: 0 0 8px 0;
    font-family: var(--font-family);
}

.processing-card p[b-3o3rpa2mf9] {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
    font-family: var(--font-family);
}

/* Animations */
@keyframes slideIn-b-3o3rpa2mf9 {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown-b-3o3rpa2mf9 {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Submit Button */
.ask-submit-btn[b-3o3rpa2mf9] {
    width: 100%;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary)) !important;
    color: white !important;
    border: none;
    border-radius: var(--radius);
    padding: 14px 20px;
    font-weight: 700;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(12, 87, 240, 0.3);
    cursor: pointer;
    font-family: var(--font-family);
}

.ask-submit-btn:not(:disabled):hover[b-3o3rpa2mf9] {
    background: linear-gradient(135deg, #0a47d0, #1557a8) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(12, 87, 240, 0.4);
    color: white !important;
}

.ask-submit-btn:disabled[b-3o3rpa2mf9] {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

/* No Tokens Message */
.no-tokens-message[b-3o3rpa2mf9] {
    background: linear-gradient(135deg, var(--brand-accent), #ff8c42);
    color: white;
    padding: 24px;
    border-radius: var(--radius);
    text-align: center;
}

.no-tokens-message i[b-3o3rpa2mf9] {
    font-size: 48px;
    margin-bottom: 12px;
}

.no-tokens-message p[b-3o3rpa2mf9] {
    font-size: 15px;
    margin: 0;
    font-weight: 500;
    font-family: var(--font-family);
}

/* Responsive Design */
@media (max-width: 768px) {
    .question-card[b-3o3rpa2mf9] {
        flex-direction: column;
        align-items: flex-start;
    }

    .question-actions[b-3o3rpa2mf9] {
        width: 100%;
        justify-content: space-between;
    }

    .question-btn[b-3o3rpa2mf9] {
        flex: 1;
    }

    .answer-header[b-3o3rpa2mf9] {
        flex-direction: column;
        gap: 16px;
    }

    .answer-badge[b-3o3rpa2mf9] {
        align-self: center;
    }

    .ask-form-panel[b-3o3rpa2mf9] {
        position: static;
        margin-top: 20px;
    }
    
    /* Mobile-specific dropdown adjustments */
    .topic-dropdown[b-3o3rpa2mf9] {
        max-height: 300px;
        position: fixed;
        left: 20px;
        right: 20px;
        width: auto;
    }
    
    .topic-list[b-3o3rpa2mf9] {
        max-height: 240px;
    }
    
    .selected-topic-chip[b-3o3rpa2mf9] {
        font-size: 13px;
        padding: 6px 10px;
    }
    
    .upload-area[b-3o3rpa2mf9] {
        padding: 30px 15px;
    }
    
    .upload-icon[b-3o3rpa2mf9] {
        font-size: 36px;
    }
    
    .upload-text[b-3o3rpa2mf9] {
        font-size: 14px;
    }
    
    .upload-tabs[b-3o3rpa2mf9] {
        flex-direction: column;
        gap: 8px;
    }
    
    .upload-tab[b-3o3rpa2mf9] {
        width: 100%;
    }
    
    .qr-upload-area[b-3o3rpa2mf9] {
        padding: 16px;
    }
    
    .qr-instructions h4[b-3o3rpa2mf9] {
        font-size: 16px;
    }
    
    .qr-instructions ol[b-3o3rpa2mf9] {
        font-size: 13px;
        padding-left: 16px;
    }
    
    .qr-code-container[b-3o3rpa2mf9] {
        padding: 16px;
    }
}

/* Extra small devices (phones in portrait) */
@media (max-width: 576px) {
    .panel-title[b-3o3rpa2mf9] {
        font-size: 18px;
    }
    
    .search-input[b-3o3rpa2mf9] {
        font-size: 16px; /* Prevents zoom on iOS */
        min-height: 44px; /* iOS recommended touch target size */
    }
    
    .topic-dropdown[b-3o3rpa2mf9] {
        max-height: 250px;
        left: 10px;
        right: 10px;
        position: fixed; /* Better positioning on iOS */
    }
    
    .topic-item[b-3o3rpa2mf9] {
        padding: 12px 16px; /* Increased from 10px for better touch targets */
        font-size: 14px; /* Increased from 13px for readability */
        min-height: 44px; /* iOS recommended touch target size */
    }
    
    .topic-item:hover[b-3o3rpa2mf9],
    .topic-item:active[b-3o3rpa2mf9] {
        padding-left: 20px;
    }
}

/* iOS-specific fixes using user agent detection */
@supports (-webkit-touch-callout: none) {
    /* iOS Safari specific styles */
    .topic-dropdown[b-3o3rpa2mf9] {
        -webkit-overflow-scrolling: touch;
    }
    
    .topic-item[b-3o3rpa2mf9] {
        cursor: pointer;
        -webkit-tap-highlight-color: rgba(12, 87, 240, 0.15);
    }
    
    /* Ensure inputs don't zoom on iOS */
    input[type="text"][b-3o3rpa2mf9],
    input[type="search"][b-3o3rpa2mf9],
    textarea[b-3o3rpa2mf9],
    select[b-3o3rpa2mf9] {
        font-size: 16px !important;
    }
}

/* KS2 Theme Font Weight Override - Change all bold (700) to semi-bold (600) */
[data-theme="KS2"] .page-title[b-3o3rpa2mf9],
[data-theme="[KS2]"] .page-title[b-3o3rpa2mf9],
[data-theme="KS2"] .panel-title[b-3o3rpa2mf9],
[data-theme="[KS2]"] .panel-title[b-3o3rpa2mf9],
[data-theme="KS2"] .question-title[b-3o3rpa2mf9],
[data-theme="[KS2]"] .question-title[b-3o3rpa2mf9],
[data-theme="KS2"] .answer-badge[b-3o3rpa2mf9],
[data-theme="[KS2]"] .answer-badge[b-3o3rpa2mf9] {
    font-weight: 600 !important;
}

/* /Pages/Courses.razor.rz.scp.css */
/* ===== COURSES PAGE STYLES ===== */
/* Modern, clean design following KSOL theme guidelines */

/* Page Header */
.page-header[b-rf2fumzrtd] {
    background: linear-gradient(135deg, #0c57f0, #1b6ec2);
    border-radius: 10px;
    padding: 16px 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 16px rgba(12, 87, 240, 0.3);
    position: relative;
    overflow: hidden;
}

.page-header[b-rf2fumzrtd]::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.page-header-content[b-rf2fumzrtd] {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.page-title[b-rf2fumzrtd] {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-family);
}

.page-icon[b-rf2fumzrtd] {
    font-size: 26px;
    color: rgba(255, 255, 255, 0.95);
}

.page-description[b-rf2fumzrtd] {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin: 4px 0 0 0;
    font-weight: 400;
}

/* Courses Summary */
.courses-summary[b-rf2fumzrtd] {
    display: flex;
    gap: 16px;
}

.summary-item[b-rf2fumzrtd] {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 10px 16px;
    text-align: center;
    min-width: 100px;
}

.summary-number[b-rf2fumzrtd] {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 4px;
}

.summary-label[b-rf2fumzrtd] {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Courses Grid */
.courses-grid[b-rf2fumzrtd] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

/* Course Card */
.course-card[b-rf2fumzrtd] {
    background: #ffffff;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    overflow: hidden;
}

.course-card:hover[b-rf2fumzrtd] {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.course-card.active-course[b-rf2fumzrtd] {
    border-left: 4px solid #0c57f0;
}

.course-card.active-course:hover[b-rf2fumzrtd] {
    border-color: #0c57f0;
    background: linear-gradient(135deg, rgba(12, 87, 240, 0.02), rgba(27, 110, 194, 0.02));
}

.course-card.active-course:hover .course-icon-tile[b-rf2fumzrtd] {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(12, 87, 240, 0.5);
}

.course-card.inactive-course[b-rf2fumzrtd] {
    border-left: 4px solid #6c757d;
    opacity: 0.85;
}

.course-card.inactive-course:hover[b-rf2fumzrtd] {
    opacity: 1;
    background: #f8f9fa;
}

.course-card.inactive-course:hover .course-icon-tile[b-rf2fumzrtd] {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(108, 117, 125, 0.4);
}

/* Course Status Badge */
.course-status-badge[b-rf2fumzrtd] {
    position: absolute;
    top: 16px;
    right: 16px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.course-status-badge.active[b-rf2fumzrtd] {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
}

.course-status-badge.inactive[b-rf2fumzrtd] {
    background: #6c757d;
    color: #ffffff;
}

.course-status-badge i[b-rf2fumzrtd] {
    font-size: 12px;
}

/* Course Icon Tile - Adobe CC Style */
.course-icon-tile[b-rf2fumzrtd] {
    width: 70px;
    height: 70px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.course-icon-tile[b-rf2fumzrtd]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 100%);
    pointer-events: none;
}

.course-icon-tile.active[b-rf2fumzrtd] {
    background: linear-gradient(135deg, #0c57f0 0%, #1b6ec2 100%);
    box-shadow: 0 6px 20px rgba(12, 87, 240, 0.4);
}

.course-icon-tile.inactive[b-rf2fumzrtd] {
    background: linear-gradient(135deg, #6c757d 0%, #545b62 100%);
    box-shadow: 0 4px 12px rgba(108, 117, 125, 0.3);
    opacity: 0.75;
}

.tile-text[b-rf2fumzrtd] {
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    font-family: var(--font-family);
    letter-spacing: -0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
    position: relative;
    z-index: 1;
}

/* Course Content */
.course-content[b-rf2fumzrtd] {
    flex: 1;
    text-align: center;
}

.course-title[b-rf2fumzrtd] {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.course-meta[b-rf2fumzrtd] {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.meta-item[b-rf2fumzrtd] {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
}

.meta-item i[b-rf2fumzrtd] {
    color: #0c57f0;
    font-size: 14px;
}

.inactive-course .meta-item i[b-rf2fumzrtd] {
    color: #6c757d;
}

/* Course Actions */
.course-actions[b-rf2fumzrtd] {
    display: flex;
    justify-content: center;
    padding-top: 16px;
    border-top: 2px solid #e9ecef;
}

.course-btn[b-rf2fumzrtd] {
    width: 100%;
    padding: 12px 20px;
    font-weight: 600;
    font-size: 14px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.course-btn:hover[b-rf2fumzrtd] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Empty State */
.empty-state[b-rf2fumzrtd] {
    text-align: center;
    padding: 80px 40px;
    background: #ffffff;
    border-radius: 10px;
    border: 2px dashed #e9ecef;
}

.empty-state-icon[b-rf2fumzrtd] {
    font-size: 80px;
    color: #0c57f0;
    margin-bottom: 24px;
    opacity: 0.6;
}

.empty-state-text[b-rf2fumzrtd] {
    font-size: 18px;
    color: #666;
    font-weight: 500;
    line-height: 1.6;
}

/* Loading Container */
.loading-container[b-rf2fumzrtd] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    min-height: 400px;
}

.spinner-primary[b-rf2fumzrtd] {
    width: 3rem;
    height: 3rem;
    border-width: 0.3rem;
    border-color: #0c57f0;
    border-right-color: transparent;
}

.loading-text[b-rf2fumzrtd] {
    margin-top: 16px;
    font-size: 16px;
    font-weight: 600;
    color: #666;
}

/* Responsive Design */
@media (max-width: 991px) {
    .page-header-content[b-rf2fumzrtd] {
        flex-direction: column;
        align-items: flex-start;
    }

    .page-title[b-rf2fumzrtd] {
        font-size: 22px;
    }

    .page-icon[b-rf2fumzrtd] {
        font-size: 32px;
    }

    .courses-summary[b-rf2fumzrtd] {
        width: 100%;
        justify-content: flex-start;
    }

    .courses-grid[b-rf2fumzrtd] {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 16px;
    }
}

@media (max-width: 767px) {
    .page-header[b-rf2fumzrtd] {
        padding: 14px 16px;
    }

    .page-title[b-rf2fumzrtd] {
        font-size: 20px;
    }

    .page-icon[b-rf2fumzrtd] {
        font-size: 28px;
    }

    .page-description[b-rf2fumzrtd] {
        font-size: 14px;
    }

    .courses-summary[b-rf2fumzrtd] {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .summary-item[b-rf2fumzrtd] {
        width: 100%;
        padding: 8px 16px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .summary-number[b-rf2fumzrtd] {
        font-size: 20px;
    }

    .summary-label[b-rf2fumzrtd] {
        font-size: 11px;
    }

    .courses-grid[b-rf2fumzrtd] {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .course-card[b-rf2fumzrtd] {
        padding: 20px;
    }

    .course-icon-wrapper[b-rf2fumzrtd] {
        width: 64px;
        height: 64px;
    }

    .course-icon[b-rf2fumzrtd] {
        font-size: 28px;
    }

    .course-title[b-rf2fumzrtd] {
        font-size: 18px;
    }

    .meta-item[b-rf2fumzrtd] {
        font-size: 13px;
    }

    .empty-state[b-rf2fumzrtd] {
        padding: 60px 24px;
    }

    .empty-state-icon[b-rf2fumzrtd] {
        font-size: 64px;
    }

    .empty-state-text[b-rf2fumzrtd] {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .page-header[b-rf2fumzrtd] {
        padding: 12px 14px;
    }

    .page-title[b-rf2fumzrtd] {
        font-size: 18px;
    }

    .page-icon[b-rf2fumzrtd] {
        font-size: 24px;
    }

    .course-card[b-rf2fumzrtd] {
        padding: 16px;
    }

    .course-icon-wrapper[b-rf2fumzrtd] {
        width: 56px;
        height: 56px;
    }

    .course-icon[b-rf2fumzrtd] {
        font-size: 24px;
    }

    .course-title[b-rf2fumzrtd] {
        font-size: 16px;
    }

    .course-status-badge[b-rf2fumzrtd] {
        position: static;
        margin-bottom: 12px;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }

    .course-btn[b-rf2fumzrtd] {
        font-size: 13px;
        padding: 10px 16px;
    }
}

/* KS2 Theme Font Weight Override - Change all bold (700) to semi-bold (600) */
[data-theme="KS2"] .page-title[b-rf2fumzrtd],
[data-theme="[KS2]"] .page-title[b-rf2fumzrtd],
[data-theme="KS2"] .course-card-title[b-rf2fumzrtd],
[data-theme="[KS2]"] .course-card-title[b-rf2fumzrtd],
[data-theme="KS2"] .course-stat-number[b-rf2fumzrtd],
[data-theme="[KS2]"] .course-stat-number[b-rf2fumzrtd],
[data-theme="KS2"] .course-info-value[b-rf2fumzrtd],
[data-theme="[KS2]"] .course-info-value[b-rf2fumzrtd] {
    font-weight: 600 !important;
}


/* /Pages/Dashboard.razor.rz.scp.css */
/* Theme Colors from .cursorrules */
:root[b-r8lrdzadg9] {
    --brand-primary: #0c57f0;
    --brand-secondary: #1b6ec2;
    --brand-accent: #ed7323;
    --success: #28a745;
    --danger: #dc3545;
    --warning: #fcfc4c;
    --info: #0b5ed7;
    --radius: 10px;
}

/* Dashboard Panels */
.dashboard-panel[b-r8lrdzadg9] {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border-radius: var(--radius);
    background: #fff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    max-height: 900px;
}

.dashboard-panel:hover[b-r8lrdzadg9] {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

/* Panel Titles */
.panel-title[b-r8lrdzadg9] {
    font-weight: 600;
    color: #333;
    margin-bottom: 24px;
    font-size: 20px;
}

.panel-title i.panel-icon[b-r8lrdzadg9] {
    color: var(--brand-primary);
    margin-right: 8px;
}

/* Calendar Legend */
.calendar-legend[b-r8lrdzadg9] {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 20px;
    padding: 16px;
    background: #f8f9fa;
    border-radius: var(--radius);
}

.legend-item[b-r8lrdzadg9] {
    display: flex;
    align-items: center;
    gap: 8px;
}

.legend-dot[b-r8lrdzadg9] {
    width: 16px;
    height: 16px;
    display: inline-block;
    border-radius: 50%;
}

.legend-completed[b-r8lrdzadg9] {
    background-color: var(--success);
    box-shadow: 0 2px 6px rgba(40, 167, 69, 0.3);
}

.legend-incomplete[b-r8lrdzadg9] {
    background-color: var(--warning);
    box-shadow: 0 2px 6px rgba(252, 252, 76, 0.3);
}

.legend-today[b-r8lrdzadg9] {
    background-color: var(--info);
    box-shadow: 0 2px 6px rgba(11, 94, 215, 0.3);
}

.legend-text[b-r8lrdzadg9] {
    color: #333;
    font-size: 13px;
    font-weight: 500;
}

/* Loading States */
.loading-container[b-r8lrdzadg9] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    gap: 16px;
}

.loading-compact[b-r8lrdzadg9] {
    min-height: 150px;
}

.loading-text[b-r8lrdzadg9] {
    color: #666;
    font-weight: 500;
    margin: 0;
}

.spinner-primary[b-r8lrdzadg9] {
    color: var(--brand-primary);
    width: 3rem;
    height: 3rem;
}

.spinner-small[b-r8lrdzadg9] {
    width: 2.5rem;
    height: 2.5rem;
}

/* Empty State */
.empty-state[b-r8lrdzadg9] {
    text-align: center;
    padding: 40px 20px;
    background: #f8f9fa;
    border-radius: var(--radius);
}

.empty-state-icon[b-r8lrdzadg9] {
    font-size: 48px;
    color: var(--success);
    margin-bottom: 16px;
}

.empty-state-text[b-r8lrdzadg9] {
    color: #666;
    font-size: 16px;
    margin: 0;
}

/* Lessons List */
.lessons-list[b-r8lrdzadg9] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lesson-card[b-r8lrdzadg9] {
    background: #f8f9fa !important;
    border-radius: var(--radius);
    padding: 16px;
    border-left: 4px solid var(--brand-primary) !important;
    transition: all 0.2s ease;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.lesson-card:hover[b-r8lrdzadg9] {
    background: #e9ecef !important;
    transform: translateX(4px);
}

.lesson-icon-wrapper[b-r8lrdzadg9] {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.lesson-type-icon[b-r8lrdzadg9] {
    color: white;
    font-size: 20px;
}

.lesson-content[b-r8lrdzadg9] {
    flex: 1;
}

.lesson-date[b-r8lrdzadg9] {
    color: var(--brand-primary) !important;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.lesson-date i[b-r8lrdzadg9] {
    font-size: 12px;
}

.lesson-description[b-r8lrdzadg9] {
    color: #333 !important;
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 2px;
}

.lesson-title[b-r8lrdzadg9] {
    color: #666 !important;
    font-size: 14px;
    font-weight: 500;
}

.lesson-btn[b-r8lrdzadg9] {
    background-color: var(--brand-primary) !important;
    color: #fff !important;
    border: none;
    border-radius: var(--radius);
    padding: 10px 20px;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(12, 87, 240, 0.2);
}

.lesson-btn:hover[b-r8lrdzadg9] {
    background-color: #0a47d0 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(12, 87, 240, 0.3);
}

.lesson-btn i[b-r8lrdzadg9] {
    margin-left: 6px;
}

/* Module Panel */
.module-content[b-r8lrdzadg9] {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.module-image[b-r8lrdzadg9] {
    width: 90px;
    height: 90px;
    object-fit: cover;
}

.module-description[b-r8lrdzadg9] {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.video-wrapper[b-r8lrdzadg9] {
    padding: 56.25% 0 0 0;
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.module-video[b-r8lrdzadg9] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Ask Question Panel - Matching LessonOverview */
.panel.ask-question-panel[b-r8lrdzadg9] {
    background: linear-gradient(135deg, var(--brand-accent), #ff8c42) !important;
    color: #fff !important;
    position: relative;
    overflow: hidden;
}

.ask-question-panel[b-r8lrdzadg9]::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.ask-title[b-r8lrdzadg9] {
    font-weight: 700;
    color: #fff !important;
    margin-bottom: 16px;
    font-size: 22px;
    position: relative;
    z-index: 1;
    font-family: var(--font-family);
}

.ask-title i[b-r8lrdzadg9] {
    margin-right: 8px;
}

.ask-description[b-r8lrdzadg9] {
    color: rgba(255, 255, 255, 0.95) !important;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    font-family: var(--font-family);
}

.ask-btn[b-r8lrdzadg9] {
    background-color: #fff !important;
    color: var(--brand-accent) !important;
    border: none;
    border-radius: var(--radius);
    padding: 12px 24px;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
    font-family: var(--font-family);
}

.ask-btn:hover[b-r8lrdzadg9] {
    background-color: #f8f9fa !important;
    color: var(--brand-accent) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.ask-btn i[b-r8lrdzadg9] {
    margin-right: 8px;
}

/* Token Display in Ask Panel */
.tokenStackDiv[b-r8lrdzadg9] {
    position: relative;
    z-index: 1;
}

/* Progress Panel */
.progress-panel[b-r8lrdzadg9] {
    margin-top: 20px;
}

/* Calendar Panel - Make it sticky and prominent */
.calendar-compact[b-r8lrdzadg9] {
    position: sticky;
    top: 20px;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(12, 87, 240, 0.12) !important;
}

.calendar-compact:hover[b-r8lrdzadg9] {
    transform: none !important;
    box-shadow: 0 4px 20px rgba(12, 87, 240, 0.12) !important;
}

.calendar-compact .panel-title[b-r8lrdzadg9] {
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    color: white !important;
    margin: -20px -20px 20px -20px;
    padding: 16px 20px;
    border-radius: var(--radius) var(--radius) 0 0;
}

.calendar-compact .panel-title i[b-r8lrdzadg9] {
    color: white !important;
}

/* Today's Task Cards */
.todays-task-card[b-r8lrdzadg9] {
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 16px;
    box-shadow: 0 4px 16px rgba(12, 87, 240, 0.3);
    position: relative;
    overflow: hidden;
}

.todays-task-card.completed[b-r8lrdzadg9] {
    background: linear-gradient(135deg, var(--success), #20c997);
    box-shadow: 0 4px 16px rgba(40, 167, 69, 0.3);
}

.todays-task-card[b-r8lrdzadg9]::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.todays-task-badge[b-r8lrdzadg9] {
    color: white;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.todays-task-badge i[b-r8lrdzadg9] {
    font-size: 16px;
}

.todays-task-list[b-r8lrdzadg9] {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.task-item[b-r8lrdzadg9] {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.task-item:hover[b-r8lrdzadg9] {
    background: rgba(255, 255, 255, 0.25);
    transform: translateX(4px);
}

.task-item-content[b-r8lrdzadg9] {
    flex: 1;
    min-width: 0;
}

.task-item-title[b-r8lrdzadg9] {
    color: white;
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 4px;
}

.task-item-description[b-r8lrdzadg9] {
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    font-weight: 500;
}

.todays-task-btn[b-r8lrdzadg9] {
    background-color: white !important;
    color: var(--brand-primary) !important;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

.todays-task-card.completed .todays-task-btn[b-r8lrdzadg9] {
    color: var(--success) !important;
}

.todays-task-btn:hover[b-r8lrdzadg9] {
    background-color: #f8f9fa !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.todays-task-btn i[b-r8lrdzadg9] {
    margin-left: 6px;
}

/* Scroll Panel */
.scrollPanel[b-r8lrdzadg9] {
    max-height: 600px;
    overflow-y: auto;
    padding-right: 8px;
}

.scrollPanel[b-r8lrdzadg9]::-webkit-scrollbar {
    width: 8px;
}

.scrollPanel[b-r8lrdzadg9]::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.scrollPanel[b-r8lrdzadg9]::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

.scrollPanel[b-r8lrdzadg9]::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Delivery Selection Styles for DYNAMICSTATIC courses */
.delivery-selection-card[b-r8lrdzadg9] {
    background: white;
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    border: 2px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.delivery-selection-card[b-r8lrdzadg9]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--brand-primary), var(--brand-secondary));
    border-radius: var(--radius) var(--radius) 0 0;
}

.delivery-selection-prompt[b-r8lrdzadg9] {
    text-align: center;
    padding: 20px;
}

.btn-show-deliveries[b-r8lrdzadg9] {
    background-color: var(--brand-primary) !important;
    color: white !important;
    border: none;
    border-radius: var(--radius);
    padding: 14px 28px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(12, 87, 240, 0.3);
    position: relative;
    z-index: 1;
}

.btn-show-deliveries:hover[b-r8lrdzadg9] {
    background-color: #0a47d0 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(12, 87, 240, 0.4);
}

.btn-show-deliveries i[b-r8lrdzadg9] {
    margin-left: 8px;
}

.delivery-search-box[b-r8lrdzadg9] {
    position: relative;
    margin-bottom: 20px;
    z-index: 1;
}

.delivery-search-helper[b-r8lrdzadg9] {
    margin-bottom: 8px;
    color: #4b5563;
    font-weight: 500;
    font-size: 14px;
}

.delivery-search-field[b-r8lrdzadg9] {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.delivery-search-input[b-r8lrdzadg9] {
    width: 100%;
    padding: 12px 16px 12px 44px;
    border: 2px solid #e9ecef;
    border-radius: var(--radius);
    background: #ffffff;
    color: #333;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
    transition: all 0.2s ease;
    font-family: var(--font-family);
}

.delivery-search-input[b-r8lrdzadg9]::placeholder {
    color: #999;
}

.delivery-search-input:focus[b-r8lrdzadg9] {
    outline: none;
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 3px rgba(12, 87, 240, 0.1);
}

.delivery-search-icon[b-r8lrdzadg9] {
    position: absolute;
    left: 16px;
    top: 58%;
    transform: translateY(-50%);
    color: #6c757d;
    pointer-events: none;
    font-size: 14px;
}

.delivery-selection-header[b-r8lrdzadg9] {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    padding-top: 10px;
}

.delivery-selection-header i[b-r8lrdzadg9] {
    font-size: 40px;
    color: var(--brand-primary);
    margin-bottom: 12px;
    display: block;
}

.delivery-selection-header h4[b-r8lrdzadg9] {
    color: #333;
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 8px;
}

.delivery-selection-header p[b-r8lrdzadg9] {
    color: #666;
    font-size: 14px;
    margin: 0;
}

.delivery-selection-card .empty-state[b-r8lrdzadg9] {
    background: #f8f9fa;
    padding: 30px 20px;
}

.delivery-selection-card .empty-state-icon[b-r8lrdzadg9] {
    color: var(--brand-primary);
}

.delivery-selection-card .empty-state-text[b-r8lrdzadg9] {
    color: #666;
}

.tutor-pathway-card[b-r8lrdzadg9] {
    background: #f1f5ff;
    border: 1px solid rgba(12, 87, 240, 0.2);
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 16px rgba(12, 87, 240, 0.08);
}

.tutor-pathway-header[b-r8lrdzadg9] {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.tutor-pathway-badge[b-r8lrdzadg9] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: var(--radius-badge);
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.tutor-pathway-header p[b-r8lrdzadg9] {
    color: #333;
    margin: 0;
    font-weight: 500;
}

.tutor-pathway-steps[b-r8lrdzadg9] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 12px;
    margin-bottom: 12px;
}

.tutor-pathway-step[b-r8lrdzadg9] {
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid #e0e7ff;
    padding: 16px;
    box-shadow: 0 2px 10px rgba(12, 87, 240, 0.08);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tutor-pathway-step-headline[b-r8lrdzadg9] {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
}

.tutor-pathway-step-number[b-r8lrdzadg9] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: var(--brand-primary);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tutor-pathway-step h5[b-r8lrdzadg9] {
    font-size: 15px;
    font-weight: 700;
    margin: 0;
    color: #1f2a44;
}

.tutor-pathway-lessons[b-r8lrdzadg9] {
    margin: 0;
    color: #555;
    font-size: 13px;
}

.tutor-pathway-actions[b-r8lrdzadg9] {
    margin-top: auto;
}

.btn-tutor-select[b-r8lrdzadg9] {
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary)) !important;
    color: #fff !important;
    border: none;
    border-radius: var(--radius);
    padding: 10px 16px;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(12, 87, 240, 0.25);
}

.btn-tutor-select i[b-r8lrdzadg9] {
    margin-left: 6px;
}

.btn-tutor-select:hover[b-r8lrdzadg9] {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(12, 87, 240, 0.3);
}

.tutor-pathway-note[b-r8lrdzadg9] {
    margin: 0;
    font-size: 13px;
    color: #4b5563;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.tutor-pathway-note i[b-r8lrdzadg9] {
    color: var(--brand-primary);
}

.delivery-options-list[b-r8lrdzadg9] {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    z-index: 1;
    max-height: 500px;
    overflow-y: auto;
    padding-right: 8px;
}

.delivery-options-list[b-r8lrdzadg9]::-webkit-scrollbar {
    width: 8px;
}

.delivery-options-list[b-r8lrdzadg9]::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.delivery-options-list[b-r8lrdzadg9]::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

.delivery-options-list[b-r8lrdzadg9]::-webkit-scrollbar-thumb:hover {
    background: #999;
}

.delivery-count[b-r8lrdzadg9] {
    text-align: center;
    color: #666;
    font-size: 14px;
    margin-bottom: 12px;
    font-weight: 600;
}

.count-breakdown[b-r8lrdzadg9] {
    color: #28a745;
    font-weight: 600;
}

.delivery-option-card[b-r8lrdzadg9] {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
    border: 2px solid #e9ecef;
}

.delivery-option-card.tutor-recommended[b-r8lrdzadg9] {
    border-color: var(--brand-primary);
    box-shadow: 0 6px 18px rgba(12, 87, 240, 0.18);
}

.delivery-option-card.tutor-recommended .delivery-option-icon[b-r8lrdzadg9] {
    background: linear-gradient(135deg, #ed7323, #ff8c42);
    box-shadow: 0 4px 14px rgba(237, 115, 35, 0.35);
}

.tutor-recommended-badge[b-r8lrdzadg9] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #e8f0ff;
    color: var(--brand-primary) !important;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 8px;
}

.tutor-recommended-badge i[b-r8lrdzadg9] {
    color: var(--brand-primary);
}

.delivery-option-card:hover[b-r8lrdzadg9] {
    background: white;
    border-color: var(--brand-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(12, 87, 240, 0.15);
}

.delivery-option-content[b-r8lrdzadg9] {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 16px;
}

.delivery-option-icon[b-r8lrdzadg9] {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(12, 87, 240, 0.2);
}

.delivery-option-icon i[b-r8lrdzadg9] {
    color: white;
    font-size: 20px;
}

.delivery-option-details[b-r8lrdzadg9] {
    flex: 1;
}

.delivery-option-details h5[b-r8lrdzadg9] {
    color: #333;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 8px;
}

.delivery-meta[b-r8lrdzadg9] {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.delivery-meta span[b-r8lrdzadg9] {
    color: #666;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.delivery-meta i[b-r8lrdzadg9] {
    font-size: 12px;
    color: var(--brand-primary);
}

.btn-select-delivery[b-r8lrdzadg9] {
    background-color: var(--brand-primary) !important;
    color: white !important;
    border: none;
    border-radius: 10px;
    padding: 12px 24px;
    font-weight: 700;
    font-size: 14px;
    white-space: nowrap;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(12, 87, 240, 0.3);
    flex-shrink: 0;
}

.btn-select-delivery:hover[b-r8lrdzadg9] {
    background-color: #0a47d0 !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(12, 87, 240, 0.4);
}

.btn-select-delivery i[b-r8lrdzadg9] {
    margin-left: 6px;
}

/* Already Set Delivery Styles */
.delivery-option-card.already-set[b-r8lrdzadg9] {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    opacity: 0.7;
    position: relative;
}

.delivery-option-card.already-set[b-r8lrdzadg9]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #28a745, #20c997);
    border-radius: var(--radius) var(--radius) 0 0;
}

.already-set-icon[b-r8lrdzadg9] {
    background: linear-gradient(135deg, #28a745, #20c997) !important;
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.2) !important;
}

.already-set-icon i[b-r8lrdzadg9] {
    color: white;
    font-size: 20px;
}

.already-set-badge[b-r8lrdzadg9] {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white !important;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 12px !important;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
    box-shadow: 0 2px 4px rgba(40, 167, 69, 0.2);
}

.already-set-badge i[b-r8lrdzadg9] {
    color: white !important;
    font-size: 11px;
}

/* Completion Card Styles */
.delivery-completion-card[b-r8lrdzadg9] {
    background: white;
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    border: 2px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.delivery-completion-card[b-r8lrdzadg9]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #28a745, #20c997);
    border-radius: var(--radius) var(--radius) 0 0;
}

.delivery-completion-header[b-r8lrdzadg9] {
    text-align: center;
    margin-bottom: 20px;
}

.delivery-completion-header i[b-r8lrdzadg9] {
    font-size: 48px;
    color: #28a745;
    margin-bottom: 12px;
    display: block;
}

.delivery-completion-header h4[b-r8lrdzadg9] {
    color: #28a745;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.delivery-completion-header p[b-r8lrdzadg9] {
    color: #666;
    font-size: 16px;
    margin: 0;
}

.completion-message[b-r8lrdzadg9] {
    background: #f8fff9;
    border: 2px solid #d4edda;
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
}

.completion-icon[b-r8lrdzadg9] {
    font-size: 32px;
    color: #28a745;
    margin-bottom: 12px;
    display: block;
}

.completion-text[b-r8lrdzadg9] {
    color: #155724;
    font-size: 16px;
    font-weight: 500;
    margin: 0;
    line-height: 1.5;
}


/* Confirmation Modal Styles */
.modal-overlay[b-r8lrdzadg9] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
    animation: fadeIn-b-r8lrdzadg9 0.2s ease;
}

@keyframes fadeIn-b-r8lrdzadg9 {
    from { opacity: 0; }
    to { opacity: 1; }
}

.confirmation-modal[b-r8lrdzadg9] {
    background: white;
    border-radius: var(--radius);
    max-width: 550px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp-b-r8lrdzadg9 0.3s ease;
    overflow: hidden;
}

@keyframes slideUp-b-r8lrdzadg9 {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.confirmation-header[b-r8lrdzadg9] {
    background: linear-gradient(135deg, #ed7323, #ff9f5a);
    color: white;
    padding: 24px;
    text-align: center;
}

.confirmation-header i[b-r8lrdzadg9] {
    font-size: 48px;
    margin-bottom: 12px;
    display: block;
}

.confirmation-header h4[b-r8lrdzadg9] {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
}

.confirmation-body[b-r8lrdzadg9] {
    padding: 24px;
}

.confirmation-question[b-r8lrdzadg9] {
    text-align: center;
    font-size: 16px;
    color: #333;
    font-weight: 600;
    margin-bottom: 20px;
}

.selected-delivery-preview[b-r8lrdzadg9] {
    background: #f8f9fa;
    border-radius: var(--radius);
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    border: 2px solid #e9ecef;
}

.preview-icon[b-r8lrdzadg9] {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(12, 87, 240, 0.2);
}

.preview-icon i[b-r8lrdzadg9] {
    color: white;
    font-size: 24px;
}

.preview-details[b-r8lrdzadg9] {
    flex: 1;
}

.preview-details h5[b-r8lrdzadg9] {
    color: #333;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 8px;
}

.preview-meta[b-r8lrdzadg9] {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.preview-meta span[b-r8lrdzadg9] {
    color: #666;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.preview-meta i[b-r8lrdzadg9] {
    color: var(--brand-primary);
    font-size: 13px;
}

.week-info[b-r8lrdzadg9] {
    background: #fff5ed;
    border-left: 4px solid #ed7323;
    border-radius: var(--radius);
    padding: 16px;
    text-align: center;
}

.week-info i[b-r8lrdzadg9] {
    color: #ed7323;
    font-size: 24px;
    margin-bottom: 8px;
    display: block;
}

.week-info p[b-r8lrdzadg9] {
    color: #666;
    font-size: 14px;
    margin: 0 0 8px 0;
}

.week-dates[b-r8lrdzadg9] {
    color: #333 !important;
    font-size: 15px !important;
    margin: 0 !important;
}

.week-dates strong[b-r8lrdzadg9] {
    color: var(--brand-primary);
}

.confirmation-actions[b-r8lrdzadg9] {
    padding: 20px 24px;
    background: #f8f9fa;
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.btn-cancel[b-r8lrdzadg9] {
    background-color: #6c757d !important;
    color: white !important;
    border: none;
    border-radius: var(--radius);
    padding: 12px 24px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-cancel:hover[b-r8lrdzadg9] {
    background-color: #5a6268 !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-confirm[b-r8lrdzadg9] {
    background-color: var(--brand-primary) !important;
    color: white !important;
    border: none;
    border-radius: var(--radius);
    padding: 12px 24px;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(12, 87, 240, 0.3);
}

.btn-confirm:hover[b-r8lrdzadg9] {
    background-color: #0a47d0 !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(12, 87, 240, 0.4);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .lesson-card[b-r8lrdzadg9] {
        flex-wrap: wrap;
        gap: 12px;
    }

    .lesson-icon-wrapper[b-r8lrdzadg9] {
        width: 40px;
        height: 40px;
    }

    .lesson-type-icon[b-r8lrdzadg9] {
        font-size: 18px;
    }

    .lesson-btn[b-r8lrdzadg9] {
        width: 100%;
        text-align: center;
    }

    .task-item[b-r8lrdzadg9] {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .todays-task-btn[b-r8lrdzadg9] {
        width: 100%;
        text-align: center;
    }

    .delivery-option-card[b-r8lrdzadg9] {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .delivery-option-content[b-r8lrdzadg9] {
        width: 100%;
    }

    .btn-select-delivery[b-r8lrdzadg9] {
        width: 100%;
        text-align: center;
    }

    .confirmation-modal[b-r8lrdzadg9] {
        max-width: 90%;
        margin: 20px;
    }

    .confirmation-actions[b-r8lrdzadg9] {
        flex-direction: column;
    }

    .btn-cancel[b-r8lrdzadg9],
    .btn-confirm[b-r8lrdzadg9] {
        width: 100%;
        justify-content: center;
    }

    .selected-delivery-preview[b-r8lrdzadg9] {
        flex-direction: column;
        text-align: center;
    }

    .preview-meta[b-r8lrdzadg9] {
        justify-content: center;
    }
}

/* KS2 Theme Font Weight Override - Change all bold (700) to semi-bold (600) */
[data-theme="KS2"] .page-title[b-r8lrdzadg9],
[data-theme="[KS2]"] .page-title[b-r8lrdzadg9],
[data-theme="KS2"] .summary-number[b-r8lrdzadg9],
[data-theme="[KS2]"] .summary-number[b-r8lrdzadg9],
[data-theme="KS2"] .panel-title[b-r8lrdzadg9],
[data-theme="[KS2]"] .panel-title[b-r8lrdzadg9],
[data-theme="KS2"] .lesson-description[b-r8lrdzadg9],
[data-theme="[KS2]"] .lesson-description[b-r8lrdzadg9],
[data-theme="KS2"] .lesson-title[b-r8lrdzadg9],
[data-theme="[KS2]"] .lesson-title[b-r8lrdzadg9],
[data-theme="KS2"] .task-item-title[b-r8lrdzadg9],
[data-theme="[KS2]"] .task-item-title[b-r8lrdzadg9],
[data-theme="KS2"] .delivery-selection-header h4[b-r8lrdzadg9],
[data-theme="[KS2]"] .delivery-selection-header h4[b-r8lrdzadg9],
[data-theme="KS2"] .selection-counter strong[b-r8lrdzadg9],
[data-theme="[KS2]"] .selection-counter strong[b-r8lrdzadg9],
[data-theme="KS2"] .delivery-option-details h5[b-r8lrdzadg9],
[data-theme="[KS2]"] .delivery-option-details h5[b-r8lrdzadg9],
[data-theme="KS2"] .confirmation-header h4[b-r8lrdzadg9],
[data-theme="[KS2]"] .confirmation-header h4[b-r8lrdzadg9],
[data-theme="KS2"] .selected-delivery-preview h5[b-r8lrdzadg9],
[data-theme="[KS2]"] .selected-delivery-preview h5[b-r8lrdzadg9],
[data-theme="KS2"] .selected-date-display strong[b-r8lrdzadg9],
[data-theme="[KS2]"] .selected-date-display strong[b-r8lrdzadg9],
[data-theme="KS2"] .delivery-completion-header h4[b-r8lrdzadg9],
[data-theme="[KS2]"] .delivery-completion-header h4[b-r8lrdzadg9] {
    font-weight: 600 !important;
}

/* First Lesson / Getting Started Styles */
.first-lesson-header[b-r8lrdzadg9] {
    text-align: center;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
    padding: 20px;
    background: linear-gradient(135deg, #f1f5ff 0%, #e8f0ff 100%);
    border-radius: var(--radius);
    border: 2px solid var(--brand-primary);
}

.first-lesson-badge[b-r8lrdzadg9] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--brand-primary);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    box-shadow: 0 4px 12px rgba(12, 87, 240, 0.3);
}

.first-lesson-badge i[b-r8lrdzadg9] {
    font-size: 16px;
    animation: star-pulse-b-r8lrdzadg9 2s ease-in-out infinite;
}

@keyframes star-pulse-b-r8lrdzadg9 {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }
    50% {
        transform: scale(1.1) rotate(10deg);
    }
}

.first-lesson-header h4[b-r8lrdzadg9] {
    color: #333;
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 12px;
    margin-top: 0;
}

.first-lesson-description[b-r8lrdzadg9] {
    color: #555;
    font-size: 16px;
    margin: 16px 0 24px 0;
    line-height: 1.6;
}

.first-lesson-description strong[b-r8lrdzadg9] {
    color: var(--brand-primary);
    font-weight: 700;
}

.first-lesson-guide[b-r8lrdzadg9] {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
    text-align: left;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.guide-step[b-r8lrdzadg9] {
    display: flex;
    align-items: center;
    gap: 16px;
    background: white;
    padding: 14px 18px;
    border-radius: var(--radius);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.guide-step:hover[b-r8lrdzadg9] {
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.step-number[b-r8lrdzadg9] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: var(--brand-primary);
    color: white;
    border-radius: 50%;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.step-text[b-r8lrdzadg9] {
    color: #333;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
}

/* First lesson call-to-action */
.first-lesson-cta[b-r8lrdzadg9] {
    margin-bottom: 16px;
    text-align: center;
}

.cta-text[b-r8lrdzadg9] {
    color: var(--brand-primary);
    font-size: 15px;
    font-weight: 600;
    margin: 0;
    animation: bounce-arrow-b-r8lrdzadg9 2s ease-in-out infinite;
}

.cta-text i[b-r8lrdzadg9] {
    display: block;
    font-size: 20px;
    margin-bottom: 8px;
}

@keyframes bounce-arrow-b-r8lrdzadg9 {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(5px);
    }
}

/* Make the Show Available Lessons button more prominent for first-time users */
.first-lesson-prompt .btn-show-deliveries[b-r8lrdzadg9] {
    background: var(--brand-primary);
    color: white;
    font-size: 16px;
    padding: 16px 32px;
    box-shadow: 0 4px 16px rgba(12, 87, 240, 0.3);
    animation: pulse-button-b-r8lrdzadg9 2s ease-in-out infinite;
    font-weight: 700;
}

@keyframes pulse-button-b-r8lrdzadg9 {
    0%, 100% {
        box-shadow: 0 4px 16px rgba(12, 87, 240, 0.3);
    }
    50% {
        box-shadow: 0 4px 24px rgba(12, 87, 240, 0.5);
    }
}

.first-lesson-prompt .btn-show-deliveries:hover[b-r8lrdzadg9] {
    background: var(--brand-secondary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(12, 87, 240, 0.4);
}

/* Responsive adjustments for first lesson guide */
@media (max-width: 768px) {
    .first-lesson-header[b-r8lrdzadg9] {
        padding: 16px;
    }
    
    .first-lesson-header h4[b-r8lrdzadg9] {
        font-size: 20px;
    }
    
    .first-lesson-description[b-r8lrdzadg9] {
        font-size: 14px;
    }
    
    .first-lesson-guide[b-r8lrdzadg9] {
        gap: 10px;
    }
    
    .guide-step[b-r8lrdzadg9] {
        padding: 12px 14px;
    }
    
    .step-number[b-r8lrdzadg9] {
        width: 28px;
        height: 28px;
        min-width: 28px;
        font-size: 13px;
    }
    
    .step-text[b-r8lrdzadg9] {
        font-size: 14px;
    }
}

/* KS2 Theme overrides for first lesson styles */
[data-theme="KS2"] .first-lesson-header h4[b-r8lrdzadg9],
[data-theme="[KS2]"] .first-lesson-header h4[b-r8lrdzadg9],
[data-theme="KS2"] .first-lesson-description strong[b-r8lrdzadg9],
[data-theme="[KS2]"] .first-lesson-description strong[b-r8lrdzadg9],
[data-theme="KS2"] .step-text[b-r8lrdzadg9],
[data-theme="[KS2]"] .step-text[b-r8lrdzadg9] {
    font-weight: 600 !important;
}
/* /Pages/DeliveryBreakdown.razor.rz.scp.css */
.breakdown-header .page-description[b-u7nsbqjvsv] {
    max-width: 720px;
}

.breakdown-actions .btn[b-u7nsbqjvsv] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    border-radius: 10px;
}

.breakdown-chart-panel .bar-chart-wrapper[b-u7nsbqjvsv] {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: none;
    box-shadow: none;
    border-radius: 16px;
}

.breakdown-list-panel[b-u7nsbqjvsv] {
    min-height: 420px;
}

.breakdown-lessons[b-u7nsbqjvsv] {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.breakdown-lesson-card[b-u7nsbqjvsv] {
    border: 1px solid #e4e9f2;
    border-radius: 14px;
    padding: 16px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 16px;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
}

.breakdown-lesson-card .lesson-meta[b-u7nsbqjvsv] {
    flex: 1 1 100%;
    max-width: 100%;
}

.lesson-date[b-u7nsbqjvsv] {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 4px;
}

.lesson-title[b-u7nsbqjvsv] {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: #111827;
}

.lesson-description[b-u7nsbqjvsv] {
    margin: 4px 0 0 0;
    font-size: 13px;
    color: #6b7280;
}

.lesson-footer[b-u7nsbqjvsv] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 12px;
    width: 100%;
}

.lesson-score-pill[b-u7nsbqjvsv] {
    border-radius: 999px;
    padding: 8px 16px;
    font-weight: 700;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
}

.lesson-score-pill.excellent[b-u7nsbqjvsv] {
    background: linear-gradient(135deg, #28a745, #20c997);
}

.lesson-score-pill.good[b-u7nsbqjvsv] {
    background: linear-gradient(135deg, #0c57f0, #1b6ec2);
}

.lesson-score-pill.needs-work[b-u7nsbqjvsv] {
    background: linear-gradient(135deg, #ed7323, #ff8c42);
    color: #ffffff;
}

.timeline-btn[b-u7nsbqjvsv] {
    border-radius: 10px;
    font-weight: 600;
    padding: 8px 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

@media (max-width: 991px) {
    .breakdown-lesson-card[b-u7nsbqjvsv] {
        align-items: flex-start;
    }

    .lesson-score-pill[b-u7nsbqjvsv] {
        align-self: flex-start;
    }
}

@media (min-width: 992px) {
    .breakdown-lesson-card .lesson-meta[b-u7nsbqjvsv] {
        flex: 1 1 75%;
        max-width: 75%;
    }

    .lesson-footer[b-u7nsbqjvsv] {
        flex: 1 1 calc(100% - 16px);
    }
}

/* /Pages/DigitalExam/DigitalExam.razor.rz.scp.css */
body[b-7njlhz89w0] {
    background: #e7f0f6 !important;
}

.de-border[b-7njlhz89w0] {
    border: 1px solid #eeeeee;
    border-radius: 10px;
    background: #ffffff;
}

.de-border[b-7njlhz89w0] {
    background: #ffffff;
}

.e-border[b-7njlhz89w0] {
    padding: 0;
}

em.candidateNumber[b-7njlhz89w0] {
    font-style: normal;
    font-weight: 300;
}

/* For candidateName: normal font style with a grey underline spanning at least 400px */
.candidateName[b-7njlhz89w0] {
    font-style: normal;
    display: inline-block;
    width: 400px;
    border-bottom: 1px solid #eeeeee;
    margin-left: 10px;
    font-style: normal;
    font-weight: 300;
}

/* For signatureBox: a box 150px high with a grey border (using 400px width for consistency) */
.signatureBox[b-7njlhz89w0] {
    display: inline-block;
    width: 400px;
    border-bottom: 1px solid #eeeeee;
    margin-left: 10px;
    vertical-align: middle; /* Ensures alignment with surrounding text if needed */
    cursor: pointer;
    font-family: Dekko, cursive;
    font-size: 24px;
    font-weight: 300;
    background: #eee;
    padding: 20px;
    border-radius: 10px;
}

.candidateInformation[b-7njlhz89w0] {
    margin-left: 10px;
    padding-top: 20px;
}

p.declaration[b-7njlhz89w0] {
    font-size: 12px;
    margin-left: 200px;
    margin-top: 10px;
}

.titles[b-7njlhz89w0] {
    background: #fafafa;
    border-radius: 10px;
    border: 1px solid #eeeeee;
}

.examTitles[b-7njlhz89w0] {
    margin: 10px;
    font-size: 70px;
    margin-top: 20px;
    border-bottom: 5px solid #eeeeee;
}

    .examTitles h5[b-7njlhz89w0] {
        font-size: 42px !important;
    }

    .examTitles p[b-7njlhz89w0] {
        font-size: 24px;
        font-weight: 200;
    }

    .examTitles h4[b-7njlhz89w0] {
        font-size: 86px;
        font-weight: 200;
    }


h5[b-7njlhz89w0] {
    font-size: 18px;
}

.examInformation[b-7njlhz89w0] {
    margin: 10px;
    margin-top: 20px;
    border-bottom: 2px solid #eeeeee;
}

    .examInformation ul[b-7njlhz89w0] {
        padding-left: 20px;
    }

.candidateCode[b-7njlhz89w0] {
    font-family: "Libre Barcode 39", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 60px;
}

.examSubHeader[b-7njlhz89w0] {
    background: #f5f5f5;
    border-bottom-left-radius: 10px;
    padding: 0px 10px;
    border-bottom-right-radius: 10px;
}

.examHeader[b-7njlhz89w0] {
    padding: 5px 10px;
}

.examSubHeader h2[b-7njlhz89w0] {
    font-size: 20px !important;
    padding: 5px;
    font-weight: bold;
}

.examSubHeader h5[b-7njlhz89w0] {
    padding-right: 10px;
}

.ExamQuestion[b-7njlhz89w0] {
    border-radius: 10px;
    border: 1px solid #eeeeee;
    padding: 10px;
}

.ExamQuestionNumber h5[b-7njlhz89w0] {
    font-size: 18px;
}

.ExamQuestionNumber[b-7njlhz89w0] {
    float: left;
    width: 70px;
}

.ExamQuestionNavigation[b-7njlhz89w0] {
    padding: 0;
    margin-top: 20px;
}

.ExamQNumber[b-7njlhz89w0] {
    padding-right: 5px;
}

.ExamQ img[b-7njlhz89w0] {
    max-width: 100%;
    height: auto;
    display: block;
}

.examQuestionArea[b-7njlhz89w0] {
    padding: 20px;
}

.list-group-item.active[b-7njlhz89w0] {
    z-index: 2;
    color: #fff;
    background-color: #0b5ed7 !important;
    border-color: #0b5ed7;
}

.list-group-item[b-7njlhz89w0] {
    cursor: pointer;
}

.ExamMarks[b-7njlhz89w0] {
    clear: both;
    display: block;
    text-align: right;
    margin-top: 20px;
}

.ExamAnswerArea[b-7njlhz89w0] {
    margin-top: 30px;
}


.QuestionQr[b-7njlhz89w0] {
    float: right;
    float: right;
    border: 1px solid #eee;
    border-radius: 10px;
}

.UploadWorking p[b-7njlhz89w0] {
    font-size: 10px;
    font-weight: 900;
    text-align: center;
}

.modalUpload[b-7njlhz89w0] {
    padding: 20px;
}

.list-group-item[b-7njlhz89w0] {
    text-align: center;
}

.ck-powered-by[b-7njlhz89w0] {
    display: none !important;
}

.wrs_modal_title[b-7njlhz89w0] {
    display: none !important;
}


.wrs_modal_button_accept[b-7njlhz89w0], .wrs_modal_button_accept:active[b-7njlhz89w0], .wrs_modal_button_accept:focus[b-7njlhz89w0], .wrs_modal_button_accept:hover[b-7njlhz89w0], .wrs_modal_button_accept:visited[b-7njlhz89w0] {
    background: #0b5ed7 !important;
}

.wrs_modal_button_cancel[b-7njlhz89w0], .wrs_modal_button_cancel:active[b-7njlhz89w0], .wrs_modal_button_cancel:focus[b-7njlhz89w0], .wrs_modal_button_cancel:hover[b-7njlhz89w0], .wrs_modal_button_cancel:visited[b-7njlhz89w0] {
    background: #ffffff !important;
    border: 1px solid #0b5ed7 !important;
}

.wrs_linksContainer[b-7njlhz89w0] {
    display: none !important;
}
/* Ensure the label is positioned relative so the pseudo-element can be absolutely positioned */
/* Ensure the label is positioned relative so the pseudo-element can be placed */
.hand-drawn-circle[b-7njlhz89w0] {
    position: relative;
    padding: 5px;
    cursor: pointer;
}

/* Create the hand-drawn circle effect when the hidden checkbox is checked */
.form-check-input:checked + .hand-drawn-circle[b-7njlhz89w0]::before {
    content: "";
    position: absolute;
    top: -8px; /* Adjust as needed */
    left: -8px;
    right: -8px;
    bottom: -8px;
    border: 2px solid #212121; /* Customize color and style */
    border-radius: 50%;
    pointer-events: none;
}

.noPadding[b-7njlhz89w0] {
    padding-left: 0;
}

.modal-dialog[b-7njlhz89w0] {
    max-width: max-content;
}

.modalUpload h3[b-7njlhz89w0] {
    font-weight: 700;
}

.reviewContainer[b-7njlhz89w0] {
    max-width: 95%;
}

.modalAnswerSection[b-7njlhz89w0] {
    background: #FBE9E7;
    width: 57%;
}

.modalAnswerContainer[b-7njlhz89w0] {
    margin-top: 20px;
}

#digitalExamQuestion[b-7njlhz89w0]{
    padding:10px 10px;
}

.ml-20[b-7njlhz89w0] {
    margin-left: 20px;
}

.studentWorkingOut[b-7njlhz89w0] {
    border: 1px solid #0c57f0;
    padding: 10px;
    border-radius: 10px;
    margin-top: 20px;
    margin-bottom: 20px;
    background: #fafafa;
}

img .studentsUploadedWork[b-7njlhz89w0] {
    margin: 0 auto;
    text-align: center
}

.studentWorkingOut p[b-7njlhz89w0] {
    font-size: 12px;
    color: #777777;
}

@media(max-width:576px) {
    p[b-7njlhz89w0] {
        font-size: 14px;
        margin-bottom: 0;
    }

    .equations-container span[b-7njlhz89w0] {
        font-family: var(--font-family) !important;
        font-size: 14px !important;
    }

    .equations-container p[b-7njlhz89w0] {
        font-family: var(--font-family) !important;
        font-size: 14px !important;
    }

    .statistics h4[b-7njlhz89w0] {
        font-size: 14px;
    }
    .equations-container[b-7njlhz89w0]{
        font-size: 14px !important;
    }
    .bg-primary h3[b-7njlhz89w0] {
        font-weight: 300;
        font-size: 14px;
    }

    .panel[b-7njlhz89w0] {
        width: 100%;
        padding: 5px;
    }

    .container-lrg[b-7njlhz89w0] {
        width: 100%;
    }

    .btn-primary[b-7njlhz89w0] {
        font-size: 14px;
    }

    .btn-secondary[b-7njlhz89w0] {
        font-size: 14px;
    }

    td[b-7njlhz89w0] {
        font-size: 14px;
    }

    .test-panel[b-7njlhz89w0] {
        margin-left: 0;
    }

    .mr-30[b-7njlhz89w0] {
        margin-right: 0;
    }

    .btn-warning[b-7njlhz89w0] {
        font-size: 14px;
    }

    .panel-lessons[b-7njlhz89w0] {
        margin-left: 0;
    }

    .btn-outline-primary[b-7njlhz89w0] {
        font-size: 14px;
    }
    .questionText p[b-7njlhz89w0]{
        font-size:14px !important;
    }

    .examSubHeader h2[b-7njlhz89w0] {
        font-size: 16px !important;
    }
    .examSubHeader h5[b-7njlhz89w0]{
        font-size:16px;
    }
}

/* Exam Sidebar Styles */
.exam-sidebar[b-7njlhz89w0] {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* QR Panel Styles */
.qr-panel[b-7njlhz89w0] {
    background: white;
    border: 1px solid #eeeeee;
    border-radius: 10px;
    padding: 16px;
    overflow: hidden;
}

.qr-header[b-7njlhz89w0] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.qr-header i[b-7njlhz89w0] {
    color: #0c57f0;
    font-size: 16px;
}

/* Constrain QR code within container */
.qr-panel .UploadWorking[b-7njlhz89w0] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    overflow: hidden;
}

.qr-panel .UploadWorking .qrImg[b-7njlhz89w0] {
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.qr-panel .UploadWorking .qrImg canvas[b-7njlhz89w0],
.qr-panel .UploadWorking .qrImg img[b-7njlhz89w0] {
    max-width: 100% !important;
    height: auto !important;
    display: block;
}

.qr-panel .UploadWorking p[b-7njlhz89w0] {
    font-size: 11px;
    text-align: center;
    margin-top: 8px;
    margin-bottom: 0;
    line-height: 1.3;
    word-break: break-word;
}

/* Work Uploaded State */
.work-uploaded[b-7njlhz89w0] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 10px;
    text-align: center;
}

.work-uploaded i[b-7njlhz89w0] {
    font-size: 40px;
    color: #28a745;
    margin-bottom: 8px;
}

.work-uploaded p[b-7njlhz89w0] {
    font-size: 13px;
    color: #333;
    font-weight: 600;
    margin: 0;
}

/* Question Navigator Panel */
.question-navigator-panel[b-7njlhz89w0] {
    background: white;
    border: 1px solid #eeeeee;
    border-radius: 10px;
    padding: 16px;
    overflow: hidden;
}

.navigator-header[b-7njlhz89w0] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.navigator-header i[b-7njlhz89w0] {
    color: #0c57f0;
    font-size: 16px;
}

.question-grid[b-7njlhz89w0] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(40px, 1fr));
    gap: 8px;
    margin-bottom: 16px;
}

.question-nav-item[b-7njlhz89w0] {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid transparent;
}

.question-nav-item.current-question[b-7njlhz89w0] {
    background: #0c57f0;
    color: white;
    border-color: #0c57f0;
}

.question-nav-item.attempted[b-7njlhz89w0] {
    background: #28a745;
    color: white;
    border-color: #28a745;
}

.question-nav-item.attempted:hover[b-7njlhz89w0] {
    background: #218838;
    transform: scale(1.05);
}

.question-nav-item.passed[b-7njlhz89w0] {
    background: #ffc107;
    color: #333;
    border-color: #ffc107;
}

.question-nav-item.passed:hover[b-7njlhz89w0] {
    background: #e0a800;
    transform: scale(1.05);
}

.question-nav-item.not-attempted[b-7njlhz89w0] {
    background: #f8f9fa;
    color: #666;
    border: 2px solid #dee2e6;
}

.question-nav-item.not-attempted:hover[b-7njlhz89w0] {
    background: #e9ecef;
    border-color: #adb5bd;
    transform: scale(1.05);
}

/* Navigation Legend */
.navigation-legend[b-7njlhz89w0] {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 12px;
    border-top: 1px solid #eeeeee;
}

.legend-item[b-7njlhz89w0] {
    display: flex;
    align-items: center;
    gap: 8px;
}

.legend-indicator[b-7njlhz89w0] {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    flex-shrink: 0;
}

.legend-indicator.current[b-7njlhz89w0] {
    background: #0c57f0;
}

.legend-indicator.attempted[b-7njlhz89w0] {
    background: #28a745;
}

.legend-indicator.passed[b-7njlhz89w0] {
    background: #ffc107;
}

.legend-indicator.not-attempted[b-7njlhz89w0] {
    background: #f8f9fa;
    border: 2px solid #dee2e6;
}

.legend-text[b-7njlhz89w0] {
    font-size: 12px;
    color: #666;
}

/* Responsive adjustments for sidebar */
@media (max-width: 991px) {
    .exam-sidebar[b-7njlhz89w0] {
        flex-direction: row;
        gap: 16px;
    }
    
    .qr-panel[b-7njlhz89w0],
    .question-navigator-panel[b-7njlhz89w0] {
        flex: 1;
    }
}

@media (max-width: 576px) {
    .exam-sidebar[b-7njlhz89w0] {
        flex-direction: column;
    }
    
    .question-grid[b-7njlhz89w0] {
        grid-template-columns: repeat(auto-fill, minmax(36px, 1fr));
        gap: 6px;
    }
    
    .question-nav-item[b-7njlhz89w0] {
        font-size: 13px;
    }
}

/* KS2 Theme Font Weight Override - Change all bold (700) to semi-bold (600) */
[data-theme="KS2"] .exam-header h1[b-7njlhz89w0],
[data-theme="[KS2]"] .exam-header h1[b-7njlhz89w0] {
    font-weight: 600 !important;
}
/* /Pages/DigitalExam/ExamIntroduction.razor.rz.scp.css */
body[b-l2uit74k7j] {
    background:#fafafa !important;
}
/* /Pages/DigitalExam/ReviewAnswers.razor.rz.scp.css */
/* Review Completion Panel - Modern & Clean Design */
.review-completion-panel[b-tqmy0wwxd8] {
    background: #ffffff;
    border-radius: 16px;
    padding: 60px 40px;
    margin: 60px auto;
    max-width: 650px;
    text-align: center;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    animation: slideUp-b-tqmy0wwxd8 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Completion Icon */
.completion-icon-wrapper[b-tqmy0wwxd8] {
    margin-bottom: 24px;
    animation: scaleIn-b-tqmy0wwxd8 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.completion-icon[b-tqmy0wwxd8] {
    font-size: 96px;
    color: #28a745;
    display: inline-block;
    background: linear-gradient(135deg, #28a745, #20c997);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 4px 12px rgba(40, 167, 69, 0.3));
}

/* Typography */
.completion-title[b-tqmy0wwxd8] {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 16px;
    letter-spacing: -0.02em;
    animation: fadeInUp-b-tqmy0wwxd8 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

.completion-message[b-tqmy0wwxd8] {
    font-size: 17px;
    color: #64748b;
    line-height: 1.7;
    margin: 0 0 32px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp-b-tqmy0wwxd8 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}

/* Actions */
.completion-actions[b-tqmy0wwxd8] {
    margin-bottom: 24px;
    animation: fadeInUp-b-tqmy0wwxd8 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
}

.btn-completion[b-tqmy0wwxd8] {
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(12, 87, 240, 0.3);
}

.btn-completion:hover[b-tqmy0wwxd8] {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(12, 87, 240, 0.4);
}

.btn-completion i[b-tqmy0wwxd8] {
    transition: transform 0.3s ease;
}

.btn-completion:hover i[b-tqmy0wwxd8] {
    transform: translateX(-4px);
}

/* Footer Tip */
.completion-footer[b-tqmy0wwxd8] {
    padding-top: 24px;
    border-top: 1px solid #e9ecef;
    animation: fadeInUp-b-tqmy0wwxd8 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
}

.completion-tip[b-tqmy0wwxd8] {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f8f9fa;
    padding: 10px 20px;
    border-radius: 8px;
    border: 1px solid #dee2e6;
}

.completion-tip i[b-tqmy0wwxd8] {
    color: #ffc107;
    font-size: 16px;
}

/* Animations */
@keyframes slideUp-b-tqmy0wwxd8 {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn-b-tqmy0wwxd8 {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeInUp-b-tqmy0wwxd8 {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Reading Mode Support */
:global(body.reading-mode) .review-completion-panel[b-tqmy0wwxd8] {
    background: #fefcf5;
    border-color: #d4c5b0;
    box-shadow: 0 4px 24px rgba(139, 115, 85, 0.15);
}

:global(body.reading-mode) .completion-title[b-tqmy0wwxd8] {
    color: #2d2416;
}

:global(body.reading-mode) .completion-message[b-tqmy0wwxd8] {
    color: #3d3020;
}

:global(body.reading-mode) .completion-tip[b-tqmy0wwxd8] {
    background: #fff9eb;
    border-color: #d4c5b0;
    color: #3d3020;
}

:global(body.reading-mode) .completion-footer[b-tqmy0wwxd8] {
    border-top-color: #d4c5b0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .review-completion-panel[b-tqmy0wwxd8] {
        padding: 40px 24px;
        margin: 40px 16px;
        border-radius: 12px;
    }

    .completion-icon[b-tqmy0wwxd8] {
        font-size: 72px;
    }

    .completion-title[b-tqmy0wwxd8] {
        font-size: 26px;
    }

    .completion-message[b-tqmy0wwxd8] {
        font-size: 16px;
    }

    .btn-completion[b-tqmy0wwxd8] {
        width: 100%;
        justify-content: center;
        padding: 12px 24px;
        font-size: 15px;
    }

    .completion-tip[b-tqmy0wwxd8] {
        font-size: 13px;
        padding: 8px 16px;
    }
}

@media (max-width: 576px) {
    .review-completion-panel[b-tqmy0wwxd8] {
        padding: 32px 20px;
        margin: 24px 12px;
    }

    .completion-icon[b-tqmy0wwxd8] {
        font-size: 64px;
    }

    .completion-title[b-tqmy0wwxd8] {
        font-size: 22px;
    }

    .completion-message[b-tqmy0wwxd8] {
        font-size: 15px;
        line-height: 1.6;
    }

    .completion-tip[b-tqmy0wwxd8] {
        flex-direction: column;
        gap: 4px;
        text-align: center;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .review-completion-panel[b-tqmy0wwxd8],
    .completion-icon-wrapper[b-tqmy0wwxd8],
    .completion-title[b-tqmy0wwxd8],
    .completion-message[b-tqmy0wwxd8],
    .completion-actions[b-tqmy0wwxd8],
    .completion-footer[b-tqmy0wwxd8] {
        animation: none;
    }

    .btn-completion:hover[b-tqmy0wwxd8] {
        transform: none;
    }

    .btn-completion:hover i[b-tqmy0wwxd8] {
        transform: none;
    }
}






















/* /Pages/EducationBank.razor.rz.scp.css */
/* ===== EDUCATION BANK PAGE STYLES ===== */
/* Modern, clean design following KSOL theme guidelines */

/* Page Header */
.page-header[b-e9nmdil6ll] {
    background: linear-gradient(135deg, #0c57f0, #1b6ec2);
    border-radius: 10px;
    padding: 16px 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 16px rgba(12, 87, 240, 0.3);
    position: relative;
    overflow: hidden;
}

.page-header[b-e9nmdil6ll]::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.page-header-content[b-e9nmdil6ll] {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.page-title[b-e9nmdil6ll] {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-family);
}

.page-icon[b-e9nmdil6ll] {
    font-size: 26px;
    color: rgba(255, 255, 255, 0.95);
}

.page-description[b-e9nmdil6ll] {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin: 4px 0 0 0;
    font-weight: 400;
    font-family: var(--font-family);
}

/* Education Summary */
.education-summary[b-e9nmdil6ll] {
    display: flex;
    gap: 16px;
}

.summary-item[b-e9nmdil6ll] {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 10px 16px;
    text-align: center;
    min-width: 100px;
}

.summary-number[b-e9nmdil6ll] {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 4px;
    font-family: var(--font-family);
}

.summary-label[b-e9nmdil6ll] {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: var(--font-family);
}

/* Filter Panel */
.filter-panel[b-e9nmdil6ll] {
    background: #ffffff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 24px;
}

.filter-controls[b-e9nmdil6ll] {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.search-box[b-e9nmdil6ll] {
    position: relative;
    flex: 1;
    min-width: 250px;
}

.search-icon[b-e9nmdil6ll] {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #666666;
    font-size: 14px;
}

.search-input[b-e9nmdil6ll] {
    width: 100%;
    padding: 12px 12px 12px 40px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 14px;
    font-family: var(--font-family);
    transition: all 0.2s ease;
}

.search-input:focus[b-e9nmdil6ll] {
    outline: none;
    border-color: #0c57f0;
    box-shadow: 0 0 0 3px rgba(12, 87, 240, 0.1);
}

.filter-dropdown[b-e9nmdil6ll] {
    min-width: 150px;
}

.filter-select[b-e9nmdil6ll] {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 14px;
    font-family: var(--font-family);
    background: #ffffff;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-select:focus[b-e9nmdil6ll] {
    outline: none;
    border-color: #0c57f0;
    box-shadow: 0 0 0 3px rgba(12, 87, 240, 0.1);
}

/* Video Grid */
.video-grid[b-e9nmdil6ll] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
}

/* Video Card */
.video-card[b-e9nmdil6ll] {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.video-card:hover[b-e9nmdil6ll] {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border-color: #0c57f0;
}

.video-card.watched[b-e9nmdil6ll] {
    border-left: 4px solid #28a745;
}

.video-card.unwatched[b-e9nmdil6ll] {
    border-left: 4px solid #0c57f0;
}

/* Video Thumbnail */
.video-thumbnail[b-e9nmdil6ll] {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: #f8f9fa;
}

.thumbnail-image[b-e9nmdil6ll] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-card:hover .thumbnail-image[b-e9nmdil6ll] {
    transform: scale(1.05);
}

.play-overlay[b-e9nmdil6ll] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.video-card:hover .play-overlay[b-e9nmdil6ll] {
    opacity: 1;
}

.play-icon[b-e9nmdil6ll] {
    color: #ffffff;
    font-size: 20px;
    margin-left: 3px;
}

.watched-badge[b-e9nmdil6ll] {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
}

.video-duration[b-e9nmdil6ll] {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Video Content */
.video-content[b-e9nmdil6ll] {
    padding: 20px;
}

.video-title[b-e9nmdil6ll] {
    font-size: 16px;
    font-weight: 700;
    color: #333333;
    margin: 0 0 8px 0;
    line-height: 1.4;
    font-family: var(--font-family);
}

.video-description[b-e9nmdil6ll] {
    font-size: 14px;
    color: #666666;
    margin: 0 0 16px 0;
    line-height: 1.5;
    font-family: var(--font-family);
}

/* Video Meta */
.video-meta[b-e9nmdil6ll] {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.meta-item[b-e9nmdil6ll] {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #666666;
}

.meta-item i[b-e9nmdil6ll] {
    width: 14px;
    color: #0c57f0;
    font-size: 12px;
}

/* Video Actions */
.video-actions[b-e9nmdil6ll] {
    display: flex;
    gap: 12px;
    align-items: center;
}

.video-btn[b-e9nmdil6ll] {
    flex: 1;
    background: linear-gradient(135deg, #0c57f0, #1b6ec2);
    border: none;
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-family);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.video-btn:hover[b-e9nmdil6ll] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(12, 87, 240, 0.3);
}

.bookmark-btn[b-e9nmdil6ll] {
    background: transparent;
    border: 2px solid #6c757d;
    color: #6c757d;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    font-family: var(--font-family);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.bookmark-btn:hover[b-e9nmdil6ll] {
    border-color: #0c57f0;
    color: #0c57f0;
    transform: translateY(-1px);
}

/* Empty State */
.empty-state[b-e9nmdil6ll] {
    text-align: center;
    padding: 60px 20px;
    color: #666666;
}

.empty-state-icon[b-e9nmdil6ll] {
    font-size: 64px;
    color: #e9ecef;
    margin-bottom: 24px;
}

.empty-state-title[b-e9nmdil6ll] {
    font-size: 24px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 12px;
    font-family: var(--font-family);
}

.empty-state-text[b-e9nmdil6ll] {
    font-size: 16px;
    color: #666666;
    font-family: var(--font-family);
}

/* Loading State */
.loading-container[b-e9nmdil6ll] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    gap: 16px;
}

.spinner-primary[b-e9nmdil6ll] {
    border-color: #0c57f0;
    border-right-color: transparent;
}

.loading-text[b-e9nmdil6ll] {
    font-size: 16px;
    font-weight: 600;
    color: #666666;
    margin: 0;
    font-family: var(--font-family);
}

/* Responsive Design */
@media (max-width: 991px) {
    .page-header-content[b-e9nmdil6ll] {
        flex-direction: column;
        align-items: flex-start;
    }

    .page-title[b-e9nmdil6ll] {
        font-size: 22px;
    }

    .page-icon[b-e9nmdil6ll] {
        font-size: 24px;
    }

    .education-summary[b-e9nmdil6ll] {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .page-header[b-e9nmdil6ll] {
        padding: 14px 16px;
    }

    .page-title[b-e9nmdil6ll] {
        font-size: 20px;
    }

    .page-icon[b-e9nmdil6ll] {
        font-size: 22px;
    }

    .filter-controls[b-e9nmdil6ll] {
        flex-direction: column;
        align-items: stretch;
    }

    .search-box[b-e9nmdil6ll] {
        min-width: auto;
    }

    .video-grid[b-e9nmdil6ll] {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 16px;
    }

    .video-actions[b-e9nmdil6ll] {
        flex-direction: column;
    }

    .video-btn[b-e9nmdil6ll] {
        width: 100%;
    }

    .bookmark-btn[b-e9nmdil6ll] {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .page-header[b-e9nmdil6ll] {
        padding: 12px 14px;
    }

    .page-title[b-e9nmdil6ll] {
        font-size: 18px;
    }

    .page-icon[b-e9nmdil6ll] {
        font-size: 20px;
    }

    .education-summary[b-e9nmdil6ll] {
        flex-direction: column;
        gap: 12px;
    }

    .summary-item[b-e9nmdil6ll] {
        width: 100%;
        padding: 8px 16px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .summary-number[b-e9nmdil6ll] {
        font-size: 20px;
    }

    .summary-label[b-e9nmdil6ll] {
        font-size: 11px;
    }

    .video-grid[b-e9nmdil6ll] {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .video-thumbnail[b-e9nmdil6ll] {
        height: 160px;
    }

    .video-content[b-e9nmdil6ll] {
        padding: 16px;
    }

    .video-title[b-e9nmdil6ll] {
        font-size: 15px;
    }

    .video-description[b-e9nmdil6ll] {
        font-size: 13px;
    }

    .empty-state[b-e9nmdil6ll] {
        padding: 40px 20px;
    }

    .empty-state-icon[b-e9nmdil6ll] {
        font-size: 48px;
    }

    .empty-state-title[b-e9nmdil6ll] {
        font-size: 20px;
    }

    .empty-state-text[b-e9nmdil6ll] {
        font-size: 14px;
    }
}

/* KS2 Theme Font Weight Override - Change all bold (700) to semi-bold (600) */
[data-theme="KS2"] .page-title[b-e9nmdil6ll],
[data-theme="[KS2]"] .page-title[b-e9nmdil6ll],
[data-theme="KS2"] .bank-question-title[b-e9nmdil6ll],
[data-theme="[KS2]"] .bank-question-title[b-e9nmdil6ll],
[data-theme="KS2"] .bank-filter-header[b-e9nmdil6ll],
[data-theme="[KS2]"] .bank-filter-header[b-e9nmdil6ll],
[data-theme="KS2"] .difficulty-badge[b-e9nmdil6ll],
[data-theme="[KS2]"] .difficulty-badge[b-e9nmdil6ll] {
    font-weight: 600 !important;
}


/* /Pages/Explanations.razor.rz.scp.css */
/* Explanations Page Styles */
/* All fonts inherit from website defaults to match Dashboard.razor */

/* Question Cards within Accordion */
.explanationBorder[b-j2r7ovcnx0] {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.questionNumberWidth[b-j2r7ovcnx0] {
    max-width: 60px;
}

.explanationQuestion[b-j2r7ovcnx0] {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #ffffff;
}

.questionText[b-j2r7ovcnx0] {
    line-height: 1.6;
}

.questionText img[b-j2r7ovcnx0] {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1rem 0;
}

/* Answer List Styles */
.answer-list[b-j2r7ovcnx0] {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.answer-item[b-j2r7ovcnx0] {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 8px;
    padding: 1rem;
    transition: all 0.3s ease;
}

.answer-item:hover[b-j2r7ovcnx0] {
    background: rgba(255, 255, 255, 0.08);
}

.answer-item.correct-answer[b-j2r7ovcnx0] {
    border-color: #2ecc71 !important;
    background: rgba(46, 204, 113, 0.1);
}

.answer-item.selected-answer[b-j2r7ovcnx0] {
    border-color: #e74c3c !important;
    background: rgba(231, 76, 60, 0.1);
}

.answerLabelCorrect[b-j2r7ovcnx0],
.answerLabelIncorrect[b-j2r7ovcnx0] {
    font-weight: 600;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

/* Explanation Text */
.explanationText[b-j2r7ovcnx0] {
    background: rgba(52, 152, 219, 0.1);
    border-left: 4px solid #3498db;
    padding: 1rem;
    border-radius: 6px;
    margin-top: 1rem;
}

/* Explanation Item Styles */
.explanationItem[b-j2r7ovcnx0] {
    display: flex;
    align-items: center;
}

.multipleChoice[b-j2r7ovcnx0] {
    background: rgba(52, 152, 219, 0.2);
    color: #3498db;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 600;
}

.explanationVideoIcon[b-j2r7ovcnx0] {
    color: #e74c3c;
    cursor: pointer;
    transition: all 0.3s ease;
}

.explanationVideoIcon:hover[b-j2r7ovcnx0] {
    color: #c0392b;
    transform: scale(1.1);
}

/* Accordion Customization */
.accordion-item[b-j2r7ovcnx0] {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.1);
    margin-bottom: 1rem;
}

.accordion-button[b-j2r7ovcnx0] {
    font-weight: 700;
    display: flex;
    align-items: center;
}

.accordion-button:not(.collapsed)[b-j2r7ovcnx0] {
    box-shadow: none;
}

.accordion-body[b-j2r7ovcnx0] {
    padding: 1.5rem;
}

/* Date Badge */
.dateForDay[b-j2r7ovcnx0] {
    color: rgba(255, 255, 255, 0.7);
}

/* Loading States */
.loading-container[b-j2r7ovcnx0] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 400px;
    padding: 3rem;
}

.loading-container.loading-compact[b-j2r7ovcnx0] {
    min-height: 200px;
    padding: 2rem;
}

.spinner-primary[b-j2r7ovcnx0] {
    width: 3rem;
    height: 3rem;
    color: #3498db;
}

.spinner-small[b-j2r7ovcnx0] {
    width: 2rem;
    height: 2rem;
}

.loading-text[b-j2r7ovcnx0] {
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Empty State */
.empty-state[b-j2r7ovcnx0] {
    text-align: center;
    padding: 3rem 2rem;
}

.empty-state-icon[b-j2r7ovcnx0] {
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 1rem;
}

.empty-state-text[b-j2r7ovcnx0] {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

/* Swiper Navigation Customization */
.custom-swiper .swiper-button-next[b-j2r7ovcnx0],
.custom-swiper .swiper-button-prev[b-j2r7ovcnx0] {
    color: #3498db;
}

.custom-swiper .swiper-pagination-bullet-active[b-j2r7ovcnx0] {
    background: #3498db;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .explanationQuestion[b-j2r7ovcnx0] {
        width: 40px;
        height: 40px;
    }
}

/* Utility Classes */
.bg-green[b-j2r7ovcnx0] {
    background-color: #2ecc71 !important;
}

.pointer[b-j2r7ovcnx0] {
    cursor: pointer;
}

/* KS2 Theme Font Weight Override - Change all bold (700) to semi-bold (600) */
[data-theme="KS2"] .explanation-number[b-j2r7ovcnx0],
[data-theme="[KS2]"] .explanation-number[b-j2r7ovcnx0],
[data-theme="KS2"] .question-number-badge[b-j2r7ovcnx0],
[data-theme="[KS2]"] .question-number-badge[b-j2r7ovcnx0] {
    font-weight: 600 !important;
}


/* /Pages/History.razor.rz.scp.css */
/* Statistics Cards Below Header - Large card style */
.row.gx-4 .summary-item[b-4d79snxfgo] {
    background: #ffffff;
    border-radius: 10px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.2s ease;
}

.row.gx-4 .summary-item:hover[b-4d79snxfgo] {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.summary-icon[b-4d79snxfgo] {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0c57f0, #1b6ec2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #ffffff;
    flex-shrink: 0;
}

.summary-icon.success[b-4d79snxfgo] {
    background: linear-gradient(135deg, #2bd36f, #17c98a);
}

.summary-icon.accent[b-4d79snxfgo] {
    background: linear-gradient(135deg, #ed7323, #ff8c42);
}

.summary-icon.info[b-4d79snxfgo] {
    background: linear-gradient(135deg, #0b5ed7, #0c57f0);
}

.summary-content[b-4d79snxfgo] {
    flex: 1;
}

.summary-value[b-4d79snxfgo] {
    font-size: 28px;
    font-weight: 700;
    color: #333333;
    line-height: 1;
    margin-bottom: 4px;
}

.summary-label[b-4d79snxfgo] {
    font-size: 14px;
    color: #666666;
    font-weight: 500;
}

/* History Header */
.history-header[b-4d79snxfgo] {
    margin-bottom: 24px;
}

/* Search and Filter Controls */
.history-filters[b-4d79snxfgo] {
    display: flex;
    gap: 12px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.search-box[b-4d79snxfgo] {
    position: relative;
    flex: 1 1 auto;
    min-width: 250px;
    max-width: 100%;
}

.search-input[b-4d79snxfgo] {
    width: 100%;
    padding: 10px 16px 10px 40px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 14px;
    transition: all 0.2s ease;
}

.search-input:focus[b-4d79snxfgo] {
    outline: none;
    border-color: #0c57f0;
    box-shadow: 0 0 0 3px rgba(12, 87, 240, 0.1);
}

.search-icon[b-4d79snxfgo] {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
    font-size: 14px;
}

.date-filter[b-4d79snxfgo] {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.btn-filter[b-4d79snxfgo] {
    padding: 10px 16px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    background: #ffffff;
    color: #666666;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-filter:hover[b-4d79snxfgo] {
    border-color: #0c57f0;
    color: #0c57f0;
    transform: translateY(-2px);
}

.btn-filter.active[b-4d79snxfgo] {
    background: linear-gradient(135deg, #0c57f0, #1b6ec2);
    border-color: #0c57f0;
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(12, 87, 240, 0.3);
}

.btn-filter i[b-4d79snxfgo] {
    font-size: 14px;
}

/* Calendar Wrapper - inline with filter buttons */
.calendar-wrapper[b-4d79snxfgo] {
    position: relative;
    display: inline-flex;
}

/* Calendar Picker Container - Hidden but functional */
.calendar-picker-container[b-4d79snxfgo] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    height: 0;
    overflow: visible;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10000;
}

/* Override to make the picker popup visible when opened */
[b-4d79snxfgo] .calendar-picker-container .flatpickr-calendar {
    opacity: 1 !important;
    pointer-events: all !important;
    position: fixed !important;
    z-index: 9999 !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
    border-radius: 10px !important;
    border: 1px solid #e9ecef !important;
}

[b-4d79snxfgo] .flatpickr-months {
    background: linear-gradient(135deg, #0c57f0, #1b6ec2) !important;
    color: white !important;
    border-radius: 10px 10px 0 0 !important;
    padding: 12px !important;
}

[b-4d79snxfgo] .flatpickr-current-month {
    color: white !important;
}

[b-4d79snxfgo] .flatpickr-months .flatpickr-month {
    color: white !important;
}

[b-4d79snxfgo] .flatpickr-prev-month svg,
[b-4d79snxfgo] .flatpickr-next-month svg {
    fill: white !important;
}

[b-4d79snxfgo] .flatpickr-weekday {
    color: #666 !important;
    font-weight: 700 !important;
}

[b-4d79snxfgo] .flatpickr-day {
    border-radius: 8px !important;
    font-weight: 500 !important;
}

[b-4d79snxfgo] .flatpickr-day.selected {
    background: #0c57f0 !important;
    border-color: #0c57f0 !important;
}

[b-4d79snxfgo] .flatpickr-day:hover:not(.flatpickr-disabled) {
    background: #e9f2ff !important;
    border-color: #0c57f0 !important;
}

[b-4d79snxfgo] .flatpickr-day.disabled {
    color: #ccc !important;
}

/* History Lessons List */
.lessons-list[b-4d79snxfgo] {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 20px;
}

.history-lessons[b-4d79snxfgo] {
    margin-top: 20px;
}

.history-card[b-4d79snxfgo] {
    position: relative;
    padding-left: 12px;
    display: flex;
    align-items: center;
    width: 100%;
}

.history-card .lesson-content[b-4d79snxfgo] {
    flex: 1 1 auto;
    min-width: 0;
}

.history-card .lesson-actions[b-4d79snxfgo] {
    flex: 0 0 auto;
    margin-left: 16px;
    margin-top: 0;
}

.lesson-status-indicator[b-4d79snxfgo] {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 60%;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lesson-status-indicator.completed[b-4d79snxfgo] {
    background: linear-gradient(135deg, #28a745, #20c997);
}

.lesson-status-indicator i[b-4d79snxfgo] {
    color: #ffffff;
    font-size: 10px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.lesson-score[b-4d79snxfgo] {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    margin-top: 8px;
    width: fit-content;
}

.lesson-score.excellent[b-4d79snxfgo] {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: #ffffff;
}

.lesson-score.good[b-4d79snxfgo] {
    background: linear-gradient(135deg, #0c57f0, #1b6ec2);
    color: #ffffff;
}

.lesson-score.needs-work[b-4d79snxfgo] {
    background: linear-gradient(135deg, #ed7323, #ff8c42);
    color: #ffffff;
}

.lesson-score i[b-4d79snxfgo] {
    font-size: 12px;
}

.lesson-completion-time[b-4d79snxfgo] {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #666666;
    margin-top: 8px;
}

.lesson-completion-time i[b-4d79snxfgo] {
    font-size: 11px;
}

.lesson-icon-wrapper.completed[b-4d79snxfgo] {
    background: linear-gradient(135deg, #28a745, #20c997);
}

.lesson-actions[b-4d79snxfgo] {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-shrink: 0;
}

.lesson-btn[b-4d79snxfgo] {
    padding: 8px 16px;
    background: linear-gradient(135deg, #0c57f0, #1b6ec2);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.lesson-btn:hover[b-4d79snxfgo] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(12, 87, 240, 0.3);
}

.lesson-btn i[b-4d79snxfgo] {
    flex-shrink: 0;
}

.btn-icon[b-4d79snxfgo] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid #0c57f0;
    color: #0c57f0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
    padding: 0;
}

.btn-icon:hover[b-4d79snxfgo] {
    background: #0c57f0;
    color: #ffffff;
    transform: scale(1.1);
}

.btn-icon i[b-4d79snxfgo] {
    font-size: 18px;
}

/* Panel header enhancements */
.panel-header[b-4d79snxfgo] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.panel-header-left[b-4d79snxfgo] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.panel-subtitle[b-4d79snxfgo] {
    font-size: 12px;
    color: #5f6368;
    margin: 4px 0 0 0;
}

/* Radar Insights */
.radar-panel .panel-header[b-4d79snxfgo] {
    align-items: flex-start;
}

.radar-refresh[b-4d79snxfgo] {
    border: 2px solid #e3e7ee;
    color: #0c57f0;
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.radar-refresh:hover[b-4d79snxfgo] {
    border-color: #0c57f0;
    background: rgba(12, 87, 240, 0.08);
}

.radar-chart-card[b-4d79snxfgo] {
    margin-top: 20px;
    background: #f8faff;
    border: 1px solid #e4e9f2;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.radar-chart-card[b-4d79snxfgo]  canvas {
    width: 100% !important;
    height: 340px !important;
}

.radar-label-chips[b-4d79snxfgo] {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.radar-chip[b-4d79snxfgo] {
    border: none;
    border-radius: 999px;
    padding: 8px 16px;
    background: #ffffff;
    color: #0c57f0;
    font-weight: 600;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 10px rgba(12, 87, 240, 0.15);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.radar-chip:hover[b-4d79snxfgo] {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(12, 87, 240, 0.25);
}

.radar-empty[b-4d79snxfgo] {
    border: 1px dashed #d7deed;
    border-radius: 14px;
    background: #fdfdff;
}

@media (max-width: 768px) {
    .radar-chart-card[b-4d79snxfgo]  canvas {
        height: 280px !important;
    }
}

/* Empty State */
.empty-state[b-4d79snxfgo] {
    text-align: center;
    padding: 60px 20px;
}

.empty-state-icon[b-4d79snxfgo] {
    font-size: 64px;
    color: #e9ecef;
    margin-bottom: 20px;
}

.empty-state-text[b-4d79snxfgo] {
    font-size: 16px;
    color: #6c757d;
    margin-bottom: 20px;
}

/* Loading States */
.loading-container[b-4d79snxfgo] {
    text-align: center;
    padding: 60px 20px;
}

.loading-container.loading-compact[b-4d79snxfgo] {
    padding: 40px 20px;
}

.loading-text[b-4d79snxfgo] {
    margin-top: 16px;
    color: #6c757d;
    font-size: 14px;
}

.spinner-primary[b-4d79snxfgo] {
    color: #0c57f0;
    width: 3rem;
    height: 3rem;
}

.spinner-primary.spinner-small[b-4d79snxfgo] {
    width: 2rem;
    height: 2rem;
}

/* Responsive Design */
/* Large Tablets and Small Laptops - 768px to 999px */
@media (max-width: 999px) and (min-width: 768px) {
    .history-card[b-4d79snxfgo] {
        flex-wrap: wrap;
        gap: 12px;
    }

    .history-card .lesson-content[b-4d79snxfgo] {
        flex: 1 1 100%;
        padding-right: 0;
    }

    .history-card .lesson-actions[b-4d79snxfgo] {
        flex: 1 1 100%;
        margin-left: 0;
        justify-content: flex-end;
        gap: 8px;
    }

    .lesson-btn[b-4d79snxfgo] {
        padding: 8px 14px;
        font-size: 12px;
    }

    /* Search and filter adjustments for tablets */
    .search-box[b-4d79snxfgo] {
        min-width: 200px;
        flex: 1 1 100%;
        margin-bottom: 8px;
    }

    .history-filters[b-4d79snxfgo] {
        gap: 12px;
    }

    .date-filter[b-4d79snxfgo] {
        flex: 1 1 100%;
        justify-content: flex-start;
    }
}

/* Tablets and Below - 991px and smaller */
@media (max-width: 991px) {
    .history-summary[b-4d79snxfgo] {
        width: 100%;
        justify-content: flex-start;
    }

    .row.gx-4 .summary-item[b-4d79snxfgo] {
        padding: 16px;
    }

    .summary-icon[b-4d79snxfgo] {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .summary-value[b-4d79snxfgo] {
        font-size: 24px;
    }

    .history-filters[b-4d79snxfgo] {
        gap: 12px;
    }

    .date-filter[b-4d79snxfgo] {
        flex-direction: column;
    }

    .btn-filter[b-4d79snxfgo] {
        width: 100%;
        justify-content: center;
    }

    .calendar-wrapper[b-4d79snxfgo] {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .history-summary[b-4d79snxfgo] {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .history-summary .summary-item[b-4d79snxfgo] {
        width: 100%;
        padding: 8px 16px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .history-summary .summary-number[b-4d79snxfgo] {
        font-size: 20px;
    }

    .history-summary .summary-label[b-4d79snxfgo] {
        font-size: 11px;
    }

    .row.gx-4 .summary-item[b-4d79snxfgo] {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .summary-icon[b-4d79snxfgo] {
        margin-bottom: 8px;
    }

    .lesson-score[b-4d79snxfgo] {
        width: 100%;
        justify-content: center;
        margin-top: 12px;
    }

    /* Mobile search and filter adjustments */
    .history-filters[b-4d79snxfgo] {
        flex-direction: column;
        gap: 12px;
    }

    .search-box[b-4d79snxfgo] {
        min-width: 0;
        width: 100%;
        flex: 1 1 100%;
        margin-bottom: 0;
    }

    .search-input[b-4d79snxfgo] {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 12px 16px 12px 44px;
    }

    .search-icon[b-4d79snxfgo] {
        left: 16px;
        font-size: 16px;
    }

    .date-filter[b-4d79snxfgo] {
        width: 100%;
        flex-direction: column;
        gap: 8px;
    }

    .btn-filter[b-4d79snxfgo] {
        width: 100%;
        justify-content: center;
        padding: 12px 16px;
        font-size: 14px;
    }

    .calendar-wrapper[b-4d79snxfgo] {
        width: 100%;
    }

    .calendar-btn[b-4d79snxfgo] {
        width: 100%;
    }

    /* Mobile lesson card adjustments */
    .history-card[b-4d79snxfgo] {
        flex-wrap: wrap;
        gap: 12px;
        padding: 12px;
    }

    .history-card .lesson-content[b-4d79snxfgo] {
        flex: 1 1 100%;
    }

    .history-card .lesson-actions[b-4d79snxfgo] {
        flex: 1 1 100%;
        margin-left: 0;
        justify-content: flex-start;
        gap: 8px;
    }

    .lesson-btn[b-4d79snxfgo] {
        flex: 1;
        justify-content: center;
        padding: 10px 12px;
        font-size: 13px;
    }

    .lesson-icon-wrapper[b-4d79snxfgo] {
        width: 40px;
        height: 40px;
    }

    .lesson-type-icon[b-4d79snxfgo] {
        font-size: 18px;
    }
}

/* KS2 Theme Font Weight Override - Change all bold (700) to semi-bold (600) */
[data-theme="KS2"] .page-title[b-4d79snxfgo],
[data-theme="[KS2]"] .page-title[b-4d79snxfgo],
[data-theme="KS2"] .history-item-title[b-4d79snxfgo],
[data-theme="[KS2]"] .history-item-title[b-4d79snxfgo],
[data-theme="KS2"] .score-display[b-4d79snxfgo],
[data-theme="[KS2]"] .score-display[b-4d79snxfgo] {
    font-weight: 600 !important;
}




/* /Pages/LessonOverview.razor.rz.scp.css */
/* Theme Colors */
:root[b-69reabuezu] {
    --brand-primary: #0c57f0;
    --brand-secondary: #1b6ec2;
    --brand-accent: #ed7323;
    --success: #28a745;
    --danger: #dc3545;
    --warning: #fcfc4c;
    --info: #0b5ed7;
    --radius: 10px;
}

/* Global Font */
/* Font inherited from global --font-family */

/* Dashboard Panel Styling - Matching Dashboard */
.panel[b-69reabuezu],
.dashboard-panel[b-69reabuezu] {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border-radius: var(--radius);
    background: #fff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.panel:hover:not(.ask-question-panel):not(.lesson-status-tabs)[b-69reabuezu],
.dashboard-panel:hover[b-69reabuezu] {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.mt-10[b-69reabuezu] {
    margin-top: 20px;
}

/* Panel Titles */
.panel-title[b-69reabuezu] {
    font-weight: 600;
    color: #333;
    margin-bottom: 24px;
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-family);
}

.panel-icon[b-69reabuezu] {
    color: var(--brand-primary);
    font-size: 20px;
}

/* Panel Lessons Container */
.panel-lessons[b-69reabuezu] {
    background: transparent !important;
    box-shadow: none !important;
    padding: 0;
}

.panel-lessons:hover[b-69reabuezu] {
    transform: none !important;
    box-shadow: none !important;
}

.lesson-status-wrapper[b-69reabuezu] {
    display: flex;
    justify-content: center;
    width: 100%;
}

.lesson-status-wrapper .lesson-status-tabs[b-69reabuezu] {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

/* Lesson Status Tabs - Modern Blue Card */
.lesson-status-tabs[b-69reabuezu] {
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary)) !important;
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 20px;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-shadow: 0 4px 16px rgba(12, 87, 240, 0.3);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: space-between;
    align-items: stretch;
    width: 100%;
}

.lesson-status-tabs[b-69reabuezu]::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}

/* Calendar Section - Modern Panel */
.calendar-section[b-69reabuezu] {
    margin-top: 20px;
    background: white;
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.selected-date-display[b-69reabuezu] {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding: 12px 16px;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    border-radius: 8px;
    color: white;
}

.selected-date-display i[b-69reabuezu] {
    font-size: 20px;
    color: white;
}

.selected-date-display .selectedDate[b-69reabuezu] {
    color: white !important;
    font-size: 18px !important;
    font-weight: 700 !important;
}

/* Force Blazorise DatePicker to be inline/visible */
[b-69reabuezu] .b-datepicker {
    display: block !important;
}

[b-69reabuezu] .b-datepicker .flatpickr-calendar {
    display: block !important;
    position: static !important;
    margin-top: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12) !important;
    border-radius: 10px !important;
    border: 1px solid #e9ecef !important;
}

[b-69reabuezu] .flatpickr-calendar.open {
    display: block !important;
}

[b-69reabuezu] .flatpickr-months {
    background: linear-gradient(135deg, #0c57f0, #1b6ec2) !important;
    color: white !important;
    border-radius: 10px 10px 0 0 !important;
    padding: 12px !important;
}

[b-69reabuezu] .flatpickr-current-month {
    color: white !important;
}

[b-69reabuezu] .flatpickr-months .flatpickr-month {
    color: white !important;
}

[b-69reabuezu] .flatpickr-prev-month svg,
[b-69reabuezu] .flatpickr-next-month svg {
    fill: white !important;
}

[b-69reabuezu] .flatpickr-weekday {
    color: #666 !important;
    font-weight: 700 !important;
}

[b-69reabuezu] .flatpickr-day {
    border-radius: 8px !important;
    font-weight: 500 !important;
}

[b-69reabuezu] .flatpickr-day.selected {
    background: #0c57f0 !important;
    border-color: #0c57f0 !important;
}

[b-69reabuezu] .flatpickr-day:hover:not(.flatpickr-disabled) {
    background: #e9f2ff !important;
    border-color: #0c57f0 !important;
}

[b-69reabuezu] .flatpickr-day.today {
    border-color: #0c57f0 !important;
    font-weight: 700 !important;
}

[b-69reabuezu] .flatpickr-day.disabled {
    color: #ccc !important;
}

/* Horizontal List Items */
.list-group-horizontal[b-69reabuezu] {
    border: none !important;
}

.horizonal-list-width[b-69reabuezu] {
    flex: 1 1 auto;
    min-width: 0;
}

.horizonal-list-width-active[b-69reabuezu],
.horizonal-list-width-not-active[b-69reabuezu] {
    border: none !important;
}

.noBG[b-69reabuezu] {
    background: transparent !important;
}

/* Tab Items - Modern White on Blue */
.lesson-status-item[b-69reabuezu] {
    background: rgba(255, 255, 255, 0.15) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    z-index: 1;
    border-radius: 8px !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 12px 16px;
}

.lesson-status-item:hover[b-69reabuezu] {
    background: rgba(255, 255, 255, 0.25) !important;
    transform: translateY(-2px);
}

.lesson-status-content[b-69reabuezu] {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    flex: 1;
}

.lesson-status-icon[b-69reabuezu] {
    color: white !important;
    font-size: 16px;
    flex-shrink: 0;
}

.lesson-status-item span[b-69reabuezu] {
    font-weight: 600;
    font-size: 14px;
    font-family: var(--font-family);
}

.lesson-status-text[b-69reabuezu] {
    color: white !important;
    min-width: 0;
    flex: 1;
}

.lesson-cal-nav[b-69reabuezu] {
    background: rgba(255, 255, 255, 0.25) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    z-index: 1;
}

.lesson-cal-nav:hover[b-69reabuezu] {
    background: rgba(255, 255, 255, 0.35) !important;
}

.lesson-cal-nav i[b-69reabuezu] {
    color: white !important;
}

.pill-count[b-69reabuezu] {
    background: white !important;
    color: var(--brand-primary) !important;
    font-weight: 700;
    font-size: 14px;
    padding: 4px 10px;
    border-radius: 20px;
    font-family: var(--font-family);
    transition: all 0.2s ease;
    flex-shrink: 0;
    min-width: 32px;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.lesson-status-item:hover .pill-count[b-69reabuezu] {
    background: var(--brand-primary) !important;
    color: white !important;
}

/* Lesson Section Titles */
.lesson-section-title[b-69reabuezu] {
    font-weight: 900;
    font-size: 22px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #333;
}

/* Empty State */
.empty-state[b-69reabuezu],
.empty-state-lesson[b-69reabuezu] {
    text-align: center;
    padding: 48px 20px;
    background: #f8f9fa;
    border-radius: 10px;
    margin-top: 20px;
}

.empty-state-icon[b-69reabuezu],
.empty-state-lesson i[b-69reabuezu] {
    font-size: 48px;
    color: #28a745;
    margin-bottom: 16px;
}

.empty-state-text[b-69reabuezu],
.empty-state-lesson p[b-69reabuezu] {
    color: #666;
    font-size: 16px;
    margin: 0;
    font-family: var(--font-family);
}

/* Lessons List */
.lessons-list[b-69reabuezu] {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
}

/* Lesson Card - Matching Dashboard */
.lesson-card[b-69reabuezu] {
    background: #f8f9fa !important;
    border-radius: var(--radius);
    padding: 16px;
    border-left: 4px solid var(--brand-primary) !important;
    transition: all 0.2s ease;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.lesson-card:hover[b-69reabuezu] {
    background: #e9ecef !important;
    transform: translateX(4px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.lesson-icon-wrapper[b-69reabuezu] {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.lesson-type-icon[b-69reabuezu] {
    color: white;
    font-size: 20px;
}

.lesson-content[b-69reabuezu] {
    flex: 1;
    min-width: 0;
}

.lesson-date[b-69reabuezu] {
    color: var(--brand-primary) !important;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-family);
}

.lesson-date i[b-69reabuezu] {
    font-size: 12px;
}

.lesson-description[b-69reabuezu] {
    color: #333 !important;
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 2px;
    font-family: var(--font-family);
}

.lesson-title[b-69reabuezu] {
    color: #666 !important;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: var(--font-family);
}

.lesson-btn[b-69reabuezu] {
    background-color: var(--brand-primary) !important;
    color: #fff !important;
    border: none;
    border-radius: var(--radius);
    padding: 10px 20px;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(12, 87, 240, 0.2);
    flex-shrink: 0;
    font-family: var(--font-family);
}

.lesson-btn:hover[b-69reabuezu] {
    background-color: #0a47d0 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(12, 87, 240, 0.3);
}

.lesson-btn i[b-69reabuezu] {
    margin-left: 6px;
}

/* Icon Button */
.btn-icon[b-69reabuezu] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--brand-primary);
    color: var(--brand-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
    padding: 0;
}

.btn-icon:hover[b-69reabuezu] {
    background: var(--brand-primary);
    color: white;
    transform: scale(1.1);
}

.btn-icon i[b-69reabuezu] {
    font-size: 18px;
}

/* Today's Task Cards */
.todays-task-card[b-69reabuezu] {
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 16px;
    box-shadow: 0 4px 16px rgba(12, 87, 240, 0.3);
    position: relative;
    overflow: hidden;
}

.todays-task-card.completed[b-69reabuezu] {
    background: linear-gradient(135deg, var(--success), #20c997);
    box-shadow: 0 4px 16px rgba(40, 167, 69, 0.3);
}

.todays-task-card[b-69reabuezu]::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.todays-task-badge[b-69reabuezu] {
    color: white;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 1;
    font-family: var(--font-family);
}

.todays-task-badge i[b-69reabuezu] {
    font-size: 16px;
}

.todays-task-list[b-69reabuezu] {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.task-item[b-69reabuezu] {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.task-item:hover[b-69reabuezu] {
    background: rgba(255, 255, 255, 0.25);
    transform: translateX(4px);
}

.task-item-content[b-69reabuezu] {
    flex: 1;
    min-width: 0;
}

.task-item-title[b-69reabuezu] {
    color: white;
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-family);
}

.task-item-title i[b-69reabuezu] {
    font-size: 14px;
    flex-shrink: 0;
}

.task-item-description[b-69reabuezu] {
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    font-weight: 500;
    font-family: var(--font-family);
}

.todays-task-btn[b-69reabuezu] {
    background-color: white !important;
    color: var(--brand-primary) !important;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
    font-family: var(--font-family);
}

.todays-task-card.completed .todays-task-btn[b-69reabuezu] {
    color: var(--success) !important;
}

.todays-task-btn:hover[b-69reabuezu] {
    background-color: #f8f9fa !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.todays-task-btn i[b-69reabuezu] {
    margin-left: 6px;
}

/* Lessons Grid */
.lessons-grid[b-69reabuezu] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 16px;
    margin-top: 20px;
}

/* Lesson Overview Cards */
.lesson-overview-card[b-69reabuezu] {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid #0c57f0;
}

.lesson-overview-card:hover[b-69reabuezu] {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

/* Card Variants */
.missed-lesson-card[b-69reabuezu] {
    border-left-color: #ed7323;
}

.incomplete-lesson-card[b-69reabuezu] {
    border-left-color: #0c57f0;
}

.completed-lesson-card[b-69reabuezu] {
    border-left-color: #28a745;
}

/* Card Header */
.lesson-overview-header[b-69reabuezu] {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
}

/* Icon Styles */
.lesson-overview-icon[b-69reabuezu] {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 20px;
    color: white;
}

.lesson-overview-icon.missed[b-69reabuezu] {
    background: linear-gradient(135deg, #ed7323, #ff8c42);
}

.lesson-overview-icon.incomplete[b-69reabuezu] {
    background: linear-gradient(135deg, #0c57f0, #1b6ec2);
}

.lesson-overview-icon.completed[b-69reabuezu] {
    background: linear-gradient(135deg, #28a745, #20c997);
}

/* Card Info */
.lesson-overview-info[b-69reabuezu] {
    flex: 1;
}

.lesson-overview-title[b-69reabuezu] {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin: 0 0 8px 0;
}

.lesson-overview-date[b-69reabuezu] {
    font-size: 13px;
    color: #666;
    margin: 0;
    font-weight: 500;
}

/* Card Actions */
.lesson-overview-action[b-69reabuezu] {
    display: flex;
    align-items: center;
}

.lesson-download-icon[b-69reabuezu] {
    color: #0c57f0;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.lesson-download-icon:hover[b-69reabuezu] {
    color: #0a47d0;
    transform: scale(1.1);
}

/* Score Badge */
.lesson-overview-score[b-69reabuezu] {
    display: flex;
    align-items: center;
}

.score-badge[b-69reabuezu] {
    padding: 6px 12px;
    border-radius: 20px;
    color: white;
    font-weight: 700;
    font-size: 14px;
    min-width: 60px;
    text-align: center;
}

/* Card Footer */
.lesson-overview-footer[b-69reabuezu] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid #e9ecef;
}

.lesson-download-icon-footer[b-69reabuezu] {
    color: #0c57f0;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.lesson-download-icon-footer:hover[b-69reabuezu] {
    color: #0a47d0;
    transform: scale(1.1);
}

/* Buttons */
.lesson-overview-btn[b-69reabuezu] {
    background-color: #0c57f0 !important;
    color: #fff !important;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s ease;
    flex: 1;
    white-space: nowrap;
}

.lesson-overview-btn:hover[b-69reabuezu] {
    background-color: #0a47d0 !important;
    transform: translateX(4px);
}

.lesson-overview-btn i[b-69reabuezu] {
    margin-left: 6px;
}

.lesson-overview-btn-secondary[b-69reabuezu] {
    background-color: #6c757d !important;
    color: #fff !important;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s ease;
    flex: 1;
}

.lesson-overview-btn-secondary:hover[b-69reabuezu] {
    background-color: #5a6268 !important;
    transform: translateX(4px);
}

.lesson-overview-btn-secondary i[b-69reabuezu] {
    margin-left: 6px;
}

/* History Header */
.history-header[b-69reabuezu] {
    margin-bottom: 24px;
}

/* Search and Filter Controls */
.history-filters[b-69reabuezu] {
    display: flex;
    gap: 12px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.search-box[b-69reabuezu] {
    position: relative;
    flex: 1;
    min-width: 250px;
}

.search-input[b-69reabuezu] {
    width: 100%;
    padding: 10px 16px 10px 40px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 14px;
    transition: all 0.2s ease;
}

.search-input:focus[b-69reabuezu] {
    outline: none;
    border-color: #0c57f0;
    box-shadow: 0 0 0 3px rgba(12, 87, 240, 0.1);
}

.search-icon[b-69reabuezu] {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
    font-size: 14px;
}

.date-filter[b-69reabuezu] {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.btn-filter[b-69reabuezu] {
    padding: 10px 16px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    background: #ffffff;
    color: #666666;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-filter:hover[b-69reabuezu] {
    border-color: #0c57f0;
    color: #0c57f0;
    transform: translateY(-2px);
}

.btn-filter.active[b-69reabuezu] {
    background: linear-gradient(135deg, #0c57f0, #1b6ec2);
    border-color: #0c57f0;
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(12, 87, 240, 0.3);
}

.btn-filter i[b-69reabuezu] {
    font-size: 14px;
}

.calendar-btn[b-69reabuezu] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Calendar Wrapper - Contains both picker and button */
.calendar-wrapper[b-69reabuezu] {
    position: relative;
    margin-top: 0;
    display: inline-flex;
}

/* Calendar Picker Container - Hidden but functional */
.calendar-picker-container[b-69reabuezu] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    height: 0;
    overflow: visible;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10000;
}

/* Override to make the picker popup visible when opened */
[b-69reabuezu] .calendar-picker-container .flatpickr-calendar {
    opacity: 1 !important;
    pointer-events: all !important;
    position: fixed !important;
    z-index: 9999 !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
    border-radius: 10px !important;
    border: 1px solid #e9ecef !important;
}

[b-69reabuezu] .calendar-picker-container .flatpickr-calendar.arrowTop {
    margin-bottom: 0 !important;
}

[b-69reabuezu] .calendar-picker-container .flatpickr-calendar.arrowTop::after,
[b-69reabuezu] .calendar-picker-container .flatpickr-calendar.arrowTop::before {
    top: auto !important;
    bottom: -10px !important;
    border-top-color: #fff !important;
    border-bottom-color: transparent !important;
}

[b-69reabuezu] .calendar-picker-container .flatpickr-calendar.animate.open {
    animation: fpFadeInDown-b-69reabuezu 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

@keyframes fpFadeInDown-b-69reabuezu {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* Open Calendar Button */
.open-calendar-btn[b-69reabuezu] {
    width: 100%;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary)) !important;
    color: white !important;
    border: none;
    border-radius: var(--radius);
    padding: 14px 20px;
    font-weight: 600;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(12, 87, 240, 0.3);
    font-family: var(--font-family);
    position: relative;
    z-index: 1;
}

.open-calendar-btn:hover[b-69reabuezu] {
    background: linear-gradient(135deg, #0a47d0, #1557a8) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(12, 87, 240, 0.4);
    color: white !important;
}

.open-calendar-btn i[b-69reabuezu] {
    font-size: 18px;
}

.open-calendar-btn span[b-69reabuezu] {
    font-weight: 700;
}

/* Day Table Section - Modern Styling */
.dayTable h3[b-69reabuezu] {
    font-weight: 900;
    font-size: 22px;
    margin-bottom: 20px;
    color: #333;
}

.dayTable table[b-69reabuezu] {
    margin-top: 20px;
}

.dayTable table.table-striped tbody tr[b-69reabuezu] {
    transition: all 0.2s ease;
}

.dayTable table.table-striped tbody tr:hover[b-69reabuezu] {
    background-color: #f8f9fa !important;
    transform: translateX(4px);
}

.dayTable table td[b-69reabuezu] {
    vertical-align: middle;
    padding: 16px 12px;
}

.dayTable table .btn[b-69reabuezu] {
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.dayTable table .btn-primary[b-69reabuezu] {
    background-color: var(--brand-primary) !important;
    border: none;
    box-shadow: 0 2px 8px rgba(12, 87, 240, 0.2);
}

.dayTable table .btn-primary:hover[b-69reabuezu] {
    background-color: #0a47d0 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(12, 87, 240, 0.3);
}

.dayTable table .btn-secondary[b-69reabuezu] {
    background-color: #6c757d !important;
    border: none;
}

.dayTable table .btn-secondary:hover[b-69reabuezu] {
    background-color: #5a6268 !important;
    transform: translateY(-2px);
}

/* Ask Question Panel - Matching Dashboard */
.panel.ask-question-panel[b-69reabuezu] {
    background: linear-gradient(135deg, var(--brand-accent), #ff8c42) !important;
    color: #fff !important;
    position: relative;
    overflow: hidden;
}

.ask-question-panel[b-69reabuezu]::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.ask-title[b-69reabuezu] {
    font-weight: 700;
    color: #fff !important;
    margin-bottom: 16px;
    font-size: 22px;
    position: relative;
    z-index: 1;
    font-family: var(--font-family);
}

.ask-title i[b-69reabuezu] {
    margin-right: 8px;
}

.ask-description[b-69reabuezu] {
    color: rgba(255, 255, 255, 0.95) !important;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    font-family: var(--font-family);
}

.ask-btn[b-69reabuezu] {
    background-color: #fff !important;
    color: var(--brand-accent) !important;
    border: none;
    border-radius: var(--radius);
    padding: 12px 24px;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
    font-family: var(--font-family);
}

.ask-btn:hover[b-69reabuezu] {
    background-color: #f8f9fa !important;
    color: var(--brand-accent) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.ask-btn i[b-69reabuezu] {
    margin-right: 8px;
}

/* Token Display in Ask Panel */
.tokenStackDiv[b-69reabuezu] {
    position: relative;
    z-index: 1;
}

/* Progress Panel Styling */
.panel.mt-10 h3[b-69reabuezu] {
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    font-size: 20px;
}

/* Loading State - Matching Dashboard */
.loading-container[b-69reabuezu] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    gap: 16px;
}

.loading-compact[b-69reabuezu] {
    min-height: 150px;
}

.loading-text[b-69reabuezu] {
    color: #666;
    font-weight: 500;
    margin: 0;
    font-family: var(--font-family);
}

.spinner-primary[b-69reabuezu] {
    color: var(--brand-primary);
    width: 3rem;
    height: 3rem;
}

.spinner-small[b-69reabuezu] {
    width: 2.5rem;
    height: 2.5rem;
}

.panel p.text-center.fw-bold[b-69reabuezu] {
    color: #666;
    font-weight: 600;
    margin-top: 20px;
}

/* Swiper Container Styles */
.custom-swiper[b-69reabuezu] {
    width: 100%;
    padding: 20px 0;
}

.custom-swiper .swiper-wrapper[b-69reabuezu] {
    display: flex;
    align-items: center;
}

.custom-swiper .swiper-slide[b-69reabuezu] {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* Scroll Panel */
.scrollPanel[b-69reabuezu] {
    max-height: 600px;
    overflow-y: auto;
    padding-right: 8px;
}

.scrollPanel[b-69reabuezu]::-webkit-scrollbar {
    width: 8px;
}

.scrollPanel[b-69reabuezu]::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.scrollPanel[b-69reabuezu]::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

.scrollPanel[b-69reabuezu]::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Container Backgrounds */
.container-lrg[b-69reabuezu] {
    padding: 20px;
}



/* Responsive Grid */
/* Tight Medium Screens - 1000px to 1200px */
@media (max-width: 1200px) and (min-width: 1000px) {
    .lesson-status-tabs[b-69reabuezu] {
        gap: 6px;
        padding: 14px;
    }
    
    .lesson-status-item[b-69reabuezu] {
        flex: 1 1 calc(50% - 3px);
        min-width: 0;
        padding: 10px 14px !important;
    }
    
    .lesson-status-content[b-69reabuezu] {
        gap: 5px;
        min-width: 0;
        flex: 1;
    }
    
    .lesson-status-text[b-69reabuezu] {
        font-size: 12px !important;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .lesson-status-icon[b-69reabuezu] {
        font-size: 13px !important;
        flex-shrink: 0;
    }
    
    .pill-count[b-69reabuezu] {
        font-size: 11px !important;
        padding: 3px 7px !important;
        flex-shrink: 0;
        min-width: 26px;
        text-align: center;
    }
}

/* Medium to Large Screens - 1201px to 1600px */
@media (max-width: 1600px) and (min-width: 1201px) {
    .lesson-status-tabs[b-69reabuezu] {
        gap: 8px;
        padding: 16px;
    }
    
    .lesson-status-item[b-69reabuezu] {
        flex: 1 1 calc(50% - 4px);
        min-width: 0;
    }
    
    .lesson-status-content[b-69reabuezu] {
        gap: 6px;
        min-width: 0;
        flex: 1;
    }
    
    .lesson-status-text[b-69reabuezu] {
        font-size: 13px !important;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .lesson-status-icon[b-69reabuezu] {
        font-size: 14px !important;
        flex-shrink: 0;
    }
    
    .pill-count[b-69reabuezu] {
        font-size: 12px !important;
        padding: 3px 8px !important;
        flex-shrink: 0;
        min-width: 28px;
        text-align: center;
    }
}

/* Smaller Tablets - 768px to 999px */
@media (max-width: 999px) and (min-width: 768px) {
    .lesson-status-tabs[b-69reabuezu] {
        gap: 8px;
        padding: 14px;
    }
    
    .lesson-status-item[b-69reabuezu] {
        flex: 1 1 calc(50% - 4px);
        min-width: 0;
        padding: 10px 12px !important;
    }
    
    .lesson-status-content[b-69reabuezu] {
        gap: 5px;
        min-width: 0;
        flex: 1;
    }
    
    .lesson-status-text[b-69reabuezu] {
        font-size: 12px !important;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .lesson-status-icon[b-69reabuezu] {
        font-size: 13px !important;
        flex-shrink: 0;
    }
    
    .pill-count[b-69reabuezu] {
        font-size: 11px !important;
        padding: 2px 7px !important;
        flex-shrink: 0;
        min-width: 24px;
        text-align: center;
    }
}

@media (max-width: 991px) {
    .history-filters[b-69reabuezu] {
        gap: 12px;
    }

    .date-filter[b-69reabuezu] {
        flex-direction: column;
    }

    .btn-filter[b-69reabuezu] {
        width: 100%;
        justify-content: center;
    }

    .calendar-wrapper[b-69reabuezu] {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .lessons-grid[b-69reabuezu] {
        grid-template-columns: 1fr;
    }
    
    .lesson-status-tabs[b-69reabuezu] {
        padding: 16px;
        gap: 8px;
    }
    
    .lesson-status-item[b-69reabuezu] {
        flex: 1 1 100%;
    }
    
    .lesson-status-item span[b-69reabuezu] {
        font-size: 12px;
    }
    
    .dayTable h3[b-69reabuezu] {
        font-size: 18px;
    }
    
    .panel[b-69reabuezu] {
        margin-bottom: 16px;
    }

    /* Lesson Card Responsive */
    .lesson-card[b-69reabuezu] {
        flex-wrap: wrap;
        gap: 12px;
    }

    .lesson-icon-wrapper[b-69reabuezu] {
        width: 40px;
        height: 40px;
    }

    .lesson-type-icon[b-69reabuezu] {
        font-size: 18px;
    }

    .btn-icon[b-69reabuezu] {
        width: 36px;
        height: 36px;
    }

    .btn-icon i[b-69reabuezu] {
        font-size: 16px;
    }

    .lesson-btn[b-69reabuezu] {
        width: 100%;
        text-align: center;
    }

    .lesson-title[b-69reabuezu] {
        white-space: normal;
        overflow: visible;
        text-overflow: clip;
    }

    /* Today's Task Responsive */
    .task-item[b-69reabuezu] {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .todays-task-btn[b-69reabuezu] {
        width: 100%;
        text-align: center;
    }

    /* Filter Responsive */
    .search-box[b-69reabuezu] {
        min-width: 100%;
    }

    .history-filters[b-69reabuezu] {
        flex-direction: column;
    }
}

/* KS2 Theme Font Weight Override - Change all bold (700) to semi-bold (600) */
[data-theme="KS2"] .page-title[b-69reabuezu],
[data-theme="[KS2]"] .page-title[b-69reabuezu],
[data-theme="KS2"] .panel-title[b-69reabuezu],
[data-theme="[KS2]"] .panel-title[b-69reabuezu],
[data-theme="KS2"] .lesson-content-main h2[b-69reabuezu],
[data-theme="[KS2]"] .lesson-content-main h2[b-69reabuezu],
[data-theme="KS2"] .lesson-breakdown-header[b-69reabuezu],
[data-theme="[KS2]"] .lesson-breakdown-header[b-69reabuezu],
[data-theme="KS2"] .topic-item-title[b-69reabuezu],
[data-theme="[KS2]"] .topic-item-title[b-69reabuezu],
[data-theme="KS2"] .quiz-card-title[b-69reabuezu],
[data-theme="[KS2]"] .quiz-card-title[b-69reabuezu],
[data-theme="KS2"] .lesson-card-title[b-69reabuezu],
[data-theme="[KS2]"] .lesson-card-title[b-69reabuezu],
[data-theme="KS2"] .quiz-status-badge[b-69reabuezu],
[data-theme="[KS2]"] .quiz-status-badge[b-69reabuezu],
[data-theme="KS2"] .stats-number[b-69reabuezu],
[data-theme="[KS2]"] .stats-number[b-69reabuezu],
[data-theme="KS2"] .explanation-number[b-69reabuezu],
[data-theme="[KS2]"] .explanation-number[b-69reabuezu],
[data-theme="KS2"] .completed-banner h3[b-69reabuezu],
[data-theme="[KS2]"] .completed-banner h3[b-69reabuezu] {
    font-weight: 600 !important;
}

/* /Pages/Mentor/MentorAccount.razor.rz.scp.css */
/* ===== MENTOR ACCOUNT PAGE STYLES ===== */
/* Modern, clean design following KSOL theme guidelines */

/* Page Header */
.page-header[b-agxu3x3wyh] {
    background: linear-gradient(135deg, #0c57f0, #1b6ec2);
    border-radius: 10px;
    padding: 16px 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 16px rgba(12, 87, 240, 0.3);
    position: relative;
    overflow: hidden;
}

.page-header[b-agxu3x3wyh]::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.page-header-content[b-agxu3x3wyh] {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.page-title[b-agxu3x3wyh] {
    font-size: 28px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-family);
}

.page-icon[b-agxu3x3wyh] {
    font-size: 26px;
    color: rgba(255, 255, 255, 0.95);
}

.page-description[b-agxu3x3wyh] {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin: 4px 0 0 0;
    font-weight: 400;
    font-family: var(--font-family);
}

/* Account Summary */
.account-summary[b-agxu3x3wyh] {
    display: flex;
    gap: 16px;
}

.summary-item[b-agxu3x3wyh] {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 10px 16px;
    text-align: center;
    min-width: 100px;
}

.summary-number[b-agxu3x3wyh] {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 4px;
    font-family: var(--font-family);
}

.summary-label[b-agxu3x3wyh] {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: var(--font-family);
}

/* Panel Titles */
.panel-title[b-agxu3x3wyh] {
    font-weight: 600;
    color: #333;
    margin-bottom: 24px;
    font-size: 20px;
    font-family: var(--font-family);
}

.panel-title i.panel-icon[b-agxu3x3wyh] {
    color: var(--brand-primary);
    margin-right: 8px;
}

/* Profile Information */
.profile-info[b-agxu3x3wyh] {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding: 16px 0;
}

.profile-avatar[b-agxu3x3wyh] {
    flex-shrink: 0;
}

.avatar-circle[b-agxu3x3wyh] {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0c57f0, #1b6ec2);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(12, 87, 240, 0.3);
    position: relative;
}

.avatar-circle[b-agxu3x3wyh]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 100%);
    pointer-events: none;
}

.avatar-text[b-agxu3x3wyh] {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    font-family: var(--font-family);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
    position: relative;
    z-index: 1;
}

.profile-details[b-agxu3x3wyh] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.detail-row[b-agxu3x3wyh] {
    display: grid;
    grid-template-columns: 220px 1fr;
    align-items: center;
    gap: 8px 16px;
    padding: 12px 0;
    border-bottom: 1px solid #e9ecef;
}

.detail-label[b-agxu3x3wyh] {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 700;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    font-family: var(--font-family);
}

.detail-label i[b-agxu3x3wyh] {
    color: #ffffff;
    background: linear-gradient(135deg, #0c57f0, #1b6ec2);
    font-size: 12px;
    width: 22px;
    height: 22px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(12, 87, 240, 0.25);
}

.detail-value[b-agxu3x3wyh] {
    font-size: 16px;
    font-weight: 600;
    color: #333333;
    font-family: var(--font-family);
}

/* Panel Header with Back Button */
.panel-header-with-back[b-agxu3x3wyh] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid #e9ecef;
}

.btn-back[b-agxu3x3wyh] {
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
}

.btn-back:hover[b-agxu3x3wyh] {
    transform: translateX(-2px);
}

/* Form Container */
.form-container[b-agxu3x3wyh] {
    padding: 8px 0;
}

.form-group[b-agxu3x3wyh] {
    margin-bottom: 24px;
}

.form-label[b-agxu3x3wyh] {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: var(--font-family);
}

.form-label i[b-agxu3x3wyh] {
    color: #0c57f0;
    font-size: 14px;
}

.form-control[b-agxu3x3wyh] {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 14px;
    font-family: var(--font-family);
    transition: all 0.2s ease;
}

.form-control:focus[b-agxu3x3wyh] {
    outline: none;
    border-color: #0c57f0;
    box-shadow: 0 0 0 3px rgba(12, 87, 240, 0.1);
}

/* Alerts */
.alert[b-agxu3x3wyh] {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-family: var(--font-family);
}

.alert-success[b-agxu3x3wyh] {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-danger[b-agxu3x3wyh] {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert i[b-agxu3x3wyh] {
    font-size: 16px;
}

/* Form Actions */
.form-actions[b-agxu3x3wyh] {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.form-actions .btn[b-agxu3x3wyh] {
    flex: 1;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.form-actions .btn-primary[b-agxu3x3wyh] {
    background: linear-gradient(135deg, #0c57f0, #1b6ec2);
    border: none;
    color: #ffffff;
}

.form-actions .btn-primary:hover:not(:disabled)[b-agxu3x3wyh] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(12, 87, 240, 0.3);
}

.form-actions .btn-primary:disabled[b-agxu3x3wyh] {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-actions .btn-secondary[b-agxu3x3wyh] {
    background: #6c757d;
    border: none;
    color: #ffffff;
}

.form-actions .btn-secondary:hover[b-agxu3x3wyh] {
    background: #5a6268;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(108, 117, 125, 0.3);
}

/* Contact Us Form */
.contact-info-box[b-agxu3x3wyh] {
    background: linear-gradient(135deg, #e7f3ff, #f0f8ff);
    border: 1px solid #b8daff;
    border-radius: 10px;
    padding: 16px 20px;
    margin-bottom: 24px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    box-shadow: 0 2px 8px rgba(12, 87, 240, 0.08);
}

.contact-info-box i[b-agxu3x3wyh] {
    color: #0c57f0;
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-info-box p[b-agxu3x3wyh] {
    margin: 0;
    font-size: 14px;
    color: #004085;
    line-height: 1.6;
    font-family: var(--font-family);
}

.required-asterisk[b-agxu3x3wyh] {
    color: #dc3545;
    font-weight: bold;
    margin-left: 2px;
}

.form-control textarea[b-agxu3x3wyh] {
    resize: vertical;
    min-height: 120px;
}

.form-text[b-agxu3x3wyh] {
    font-size: 12px;
    color: #6c757d;
    margin-top: 6px;
    display: block;
    font-family: var(--font-family);
}

/* Account Actions */
.action-buttons[b-agxu3x3wyh] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.account-btn[b-agxu3x3wyh] {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    font-family: var(--font-family);
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.account-btn i[b-agxu3x3wyh] {
    font-size: 16px;
}

.account-btn.btn-outline-primary[b-agxu3x3wyh] {
    border: 2px solid #0c57f0;
    color: #0c57f0;
    background: transparent;
}

.account-btn.btn-outline-primary:hover:not(:disabled)[b-agxu3x3wyh] {
    background: #0c57f0;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(12, 87, 240, 0.3);
}

.account-btn.btn-outline-secondary[b-agxu3x3wyh] {
    border: 2px solid #6c757d;
    color: #6c757d;
    background: transparent;
}

.account-btn.btn-outline-secondary:hover:not(:disabled)[b-agxu3x3wyh] {
    background: #6c757d;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(108, 117, 125, 0.3);
}

.account-btn.btn-danger[b-agxu3x3wyh] {
    border: 2px solid #dc3545;
    color: #dc3545;
    background: transparent;
}

.account-btn.btn-outline-info[b-agxu3x3wyh] {
    border: 2px solid #17a2b8;
    color: #17a2b8;
    background: transparent;
}

.account-btn.btn-outline-info:hover:not(:disabled)[b-agxu3x3wyh] {
    background: #17a2b8;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(23, 162, 184, 0.3);
}

.account-btn.btn-danger[b-agxu3x3wyh] {
    border: 2px solid #dc3545;
    color: #dc3545;
    background: transparent;
}

.account-btn.btn-danger:hover:not(:disabled)[b-agxu3x3wyh] {
    background: #dc3545;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

.account-btn:disabled[b-agxu3x3wyh] {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

/* Empty State */
.empty-state[b-agxu3x3wyh] {
    text-align: center;
    padding: 40px 20px;
    color: #666666;
}

.empty-state-icon[b-agxu3x3wyh] {
    font-size: 48px;
    color: #e9ecef;
    margin-bottom: 16px;
}

.empty-state-text[b-agxu3x3wyh] {
    font-size: 16px;
    color: #666666;
    font-family: var(--font-family);
}

/* Loading State */
.loading-container[b-agxu3x3wyh] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    gap: 16px;
}

.spinner-primary[b-agxu3x3wyh] {
    border-color: #0c57f0;
    border-right-color: transparent;
}

.loading-text[b-agxu3x3wyh] {
    font-size: 16px;
    font-weight: 600;
    color: #666666;
    margin: 0;
    font-family: var(--font-family);
}

/* ===== STUDENT MANAGEMENT STYLES ===== */

/* Students List */
.students-list[b-agxu3x3wyh] {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 16px;
}

.student-item[b-agxu3x3wyh] {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 16px;
    border: 2px solid transparent;
    transition: all 0.2s ease;
}

.student-item:hover[b-agxu3x3wyh] {
    background: #ffffff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.student-item.editing[b-agxu3x3wyh] {
    background: #ffffff;
    border-color: #0c57f0;
    box-shadow: 0 4px 16px rgba(12, 87, 240, 0.15);
}

/* Student Display (View Mode) */
.student-display[b-agxu3x3wyh] {
    display: flex;
    align-items: center;
    gap: 16px;
}

.student-avatar-section[b-agxu3x3wyh] {
    flex-shrink: 0;
}

.avatar-circle-small[b-agxu3x3wyh] {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0c57f0, #1b6ec2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(12, 87, 240, 0.25);
}

.student-info[b-agxu3x3wyh] {
    flex: 1;
}

.student-name[b-agxu3x3wyh] {
    font-size: 18px;
    font-weight: 600;
    color: #333333;
    margin: 0 0 8px 0;
    font-family: var(--font-family);
}

.student-details[b-agxu3x3wyh] {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.student-detail-item[b-agxu3x3wyh] {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #666666;
    font-family: var(--font-family);
}

.student-detail-item i[b-agxu3x3wyh] {
    color: #0c57f0;
    font-size: 14px;
}

.student-actions[b-agxu3x3wyh] {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.student-actions .btn[b-agxu3x3wyh] {
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.student-actions .btn-sm[b-agxu3x3wyh] {
    padding: 6px 12px;
    font-size: 12px;
}

.student-actions .btn:hover[b-agxu3x3wyh] {
    transform: translateY(-2px);
}

/* Student Edit Form */
.student-edit-header[b-agxu3x3wyh] {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid #e9ecef;
}

.student-edit-header h4[b-agxu3x3wyh] {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #333333;
    font-family: var(--font-family);
}

/* Responsive Design */
@media (max-width: 991px) {
    .page-header-content[b-agxu3x3wyh] {
        flex-direction: column;
        align-items: flex-start;
    }

    .page-title[b-agxu3x3wyh] {
        font-size: 22px;
    }

    .page-icon[b-agxu3x3wyh] {
        font-size: 24px;
    }

    .account-summary[b-agxu3x3wyh] {
        width: 100%;
        justify-content: center;
    }

    .profile-info[b-agxu3x3wyh] {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .profile-details[b-agxu3x3wyh] {
        align-items: stretch;
        width: 100%;
    }

    .detail-row[b-agxu3x3wyh] {
        grid-template-columns: 1fr;
    }

    .form-actions[b-agxu3x3wyh] {
        flex-direction: column;
    }

    .form-actions .btn[b-agxu3x3wyh] {
        width: 100%;
    }

    .student-display[b-agxu3x3wyh] {
        flex-direction: column;
        align-items: flex-start;
    }

    .student-actions[b-agxu3x3wyh] {
        width: 100%;
    }

    .student-actions .btn[b-agxu3x3wyh] {
        flex: 1;
    }
}

@media (max-width: 767px) {
    .page-header[b-agxu3x3wyh] {
        padding: 14px 16px;
    }

    .page-title[b-agxu3x3wyh] {
        font-size: 20px;
    }

    .page-icon[b-agxu3x3wyh] {
        font-size: 22px;
    }

    .avatar-circle[b-agxu3x3wyh] {
        width: 70px;
        height: 70px;
    }

    .avatar-text[b-agxu3x3wyh] {
        font-size: 24px;
    }

    .detail-row[b-agxu3x3wyh] {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .action-buttons[b-agxu3x3wyh] {
        gap: 10px;
    }

    .account-btn[b-agxu3x3wyh] {
        padding: 14px 16px;
    }

    .student-actions[b-agxu3x3wyh] {
        flex-direction: column;
    }

    .student-actions .btn[b-agxu3x3wyh] {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .page-header[b-agxu3x3wyh] {
        padding: 12px 14px;
    }

    .page-title[b-agxu3x3wyh] {
        font-size: 18px;
    }

    .page-icon[b-agxu3x3wyh] {
        font-size: 20px;
    }

    .account-summary[b-agxu3x3wyh] {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .summary-item[b-agxu3x3wyh] {
        width: 100%;
        padding: 8px 16px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .summary-number[b-agxu3x3wyh] {
        font-size: 20px;
    }

    .summary-label[b-agxu3x3wyh] {
        font-size: 11px;
    }

    .avatar-circle[b-agxu3x3wyh] {
        width: 60px;
        height: 60px;
    }

    .avatar-text[b-agxu3x3wyh] {
        font-size: 20px;
    }

    .avatar-circle-small[b-agxu3x3wyh] {
        width: 45px;
        height: 45px;
        font-size: 14px;
    }

    .profile-details[b-agxu3x3wyh] {
        gap: 12px;
    }

    .detail-value[b-agxu3x3wyh] {
        font-size: 14px;
    }

    .action-buttons[b-agxu3x3wyh] {
        gap: 8px;
    }

    .account-btn[b-agxu3x3wyh] {
        padding: 12px 14px;
        font-size: 14px;
    }

    .account-btn i[b-agxu3x3wyh] {
        font-size: 16px;
    }

    .form-actions[b-agxu3x3wyh] {
        flex-direction: column;
    }

    .form-actions .btn[b-agxu3x3wyh] {
        width: 100%;
        padding: 10px 20px;
    }

    .student-item[b-agxu3x3wyh] {
        padding: 14px;
    }

    .student-name[b-agxu3x3wyh] {
        font-size: 16px;
    }

    .student-detail-item[b-agxu3x3wyh] {
        font-size: 12px;
    }
}




/* /Pages/Mentor/MentorHistory.razor.rz.scp.css */
/* Statistics Cards Below Header - Large card style */
.row.gx-4 .summary-item[b-sp4ds9618a] {
    background: #ffffff;
    border-radius: 10px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.2s ease;
}

.row.gx-4 .summary-item:hover[b-sp4ds9618a] {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.summary-icon[b-sp4ds9618a] {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0c57f0, #1b6ec2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #ffffff;
    flex-shrink: 0;
}

.summary-icon.success[b-sp4ds9618a] {
    background: linear-gradient(135deg, #2bd36f, #17c98a);
}

.summary-icon.accent[b-sp4ds9618a] {
    background: linear-gradient(135deg, #ed7323, #ff8c42);
}

.summary-icon.info[b-sp4ds9618a] {
    background: linear-gradient(135deg, #0b5ed7, #0c57f0);
}

.summary-content[b-sp4ds9618a] {
    flex: 1;
}

.summary-value[b-sp4ds9618a] {
    font-size: 28px;
    font-weight: 700;
    color: #333333;
    line-height: 1;
    margin-bottom: 4px;
}

.summary-label[b-sp4ds9618a] {
    font-size: 14px;
    color: #666666;
    font-weight: 500;
}

/* History Header */
.history-header[b-sp4ds9618a] {
    margin-bottom: 24px;
}

/* Search and Filter Controls */
.history-filters[b-sp4ds9618a] {
    display: flex;
    gap: 12px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.search-box[b-sp4ds9618a] {
    position: relative;
    flex: 1 1 auto;
    min-width: 250px;
    max-width: 100%;
}

.search-input[b-sp4ds9618a] {
    width: 100%;
    padding: 10px 16px 10px 40px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 14px;
    transition: all 0.2s ease;
}

.search-input:focus[b-sp4ds9618a] {
    outline: none;
    border-color: #0c57f0;
    box-shadow: 0 0 0 3px rgba(12, 87, 240, 0.1);
}

.search-icon[b-sp4ds9618a] {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
    font-size: 14px;
}

.date-filter[b-sp4ds9618a] {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.btn-filter[b-sp4ds9618a] {
    padding: 10px 16px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    background: #ffffff;
    color: #666666;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-filter:hover[b-sp4ds9618a] {
    border-color: #0c57f0;
    color: #0c57f0;
    transform: translateY(-2px);
}

.btn-filter.active[b-sp4ds9618a] {
    background: linear-gradient(135deg, #0c57f0, #1b6ec2);
    border-color: #0c57f0;
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(12, 87, 240, 0.3);
}

.btn-filter i[b-sp4ds9618a] {
    font-size: 14px;
}

/* Calendar Wrapper - inline with filter buttons */
.calendar-wrapper[b-sp4ds9618a] {
    position: relative;
    display: inline-flex;
}

/* Calendar Picker Container - Hidden but functional */
.calendar-picker-container[b-sp4ds9618a] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    height: 0;
    overflow: visible;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10000;
}

/* Override to make the picker popup visible when opened */
[b-sp4ds9618a] .calendar-picker-container .flatpickr-calendar {
    opacity: 1 !important;
    pointer-events: all !important;
    position: fixed !important;
    z-index: 9999 !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
    border-radius: 10px !important;
    border: 1px solid #e9ecef !important;
}

[b-sp4ds9618a] .flatpickr-months {
    background: linear-gradient(135deg, #0c57f0, #1b6ec2) !important;
    color: white !important;
    border-radius: 10px 10px 0 0 !important;
    padding: 12px !important;
}

[b-sp4ds9618a] .flatpickr-current-month {
    color: white !important;
}

[b-sp4ds9618a] .flatpickr-months .flatpickr-month {
    color: white !important;
}

[b-sp4ds9618a] .flatpickr-prev-month svg,
[b-sp4ds9618a] .flatpickr-next-month svg {
    fill: white !important;
}

[b-sp4ds9618a] .flatpickr-weekday {
    color: #666 !important;
    font-weight: 700 !important;
}

[b-sp4ds9618a] .flatpickr-day {
    border-radius: 8px !important;
    font-weight: 500 !important;
}

[b-sp4ds9618a] .flatpickr-day.selected {
    background: #0c57f0 !important;
    border-color: #0c57f0 !important;
}

[b-sp4ds9618a] .flatpickr-day:hover:not(.flatpickr-disabled) {
    background: #e9f2ff !important;
    border-color: #0c57f0 !important;
}

[b-sp4ds9618a] .flatpickr-day.disabled {
    color: #ccc !important;
}

/* History Lessons List */
.lessons-list[b-sp4ds9618a] {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 20px;
}

.history-lessons[b-sp4ds9618a] {
    margin-top: 20px;
}

.history-card[b-sp4ds9618a] {
    position: relative;
    padding-left: 12px;
    display: flex;
    align-items: center;
    width: 100%;
}

.history-card .lesson-content[b-sp4ds9618a] {
    flex: 1 1 auto;
    min-width: 0;
}

.history-card .lesson-actions[b-sp4ds9618a] {
    flex: 0 0 auto;
    margin-left: 16px;
    margin-top: 0;
}

.lesson-status-indicator[b-sp4ds9618a] {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 60%;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lesson-status-indicator.completed[b-sp4ds9618a] {
    background: linear-gradient(135deg, #28a745, #20c997);
}

.lesson-status-indicator i[b-sp4ds9618a] {
    color: #ffffff;
    font-size: 10px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.lesson-score[b-sp4ds9618a] {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    margin-top: 8px;
    width: fit-content;
}

.lesson-score.excellent[b-sp4ds9618a] {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: #ffffff;
}

.lesson-score.good[b-sp4ds9618a] {
    background: linear-gradient(135deg, #0c57f0, #1b6ec2);
    color: #ffffff;
}

.lesson-score.needs-work[b-sp4ds9618a] {
    background: linear-gradient(135deg, #ed7323, #ff8c42);
    color: #ffffff;
}

.lesson-score i[b-sp4ds9618a] {
    font-size: 12px;
}

.lesson-completion-time[b-sp4ds9618a] {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #666666;
    margin-top: 8px;
}

.lesson-completion-time i[b-sp4ds9618a] {
    font-size: 11px;
}

.lesson-icon-wrapper.completed[b-sp4ds9618a] {
    background: linear-gradient(135deg, #28a745, #20c997);
}

.lesson-actions[b-sp4ds9618a] {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-shrink: 0;
}

.lesson-btn[b-sp4ds9618a] {
    padding: 8px 16px;
    background: linear-gradient(135deg, #0c57f0, #1b6ec2);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.lesson-btn:hover[b-sp4ds9618a] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(12, 87, 240, 0.3);
}

.lesson-btn i[b-sp4ds9618a] {
    flex-shrink: 0;
}

.btn-icon[b-sp4ds9618a] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid #0c57f0;
    color: #0c57f0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
    padding: 0;
}

.btn-icon:hover[b-sp4ds9618a] {
    background: #0c57f0;
    color: #ffffff;
    transform: scale(1.1);
}

.btn-icon i[b-sp4ds9618a] {
    font-size: 18px;
}

/* Panel header enhancements */
.panel-header[b-sp4ds9618a] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.panel-header-left[b-sp4ds9618a] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.panel-subtitle[b-sp4ds9618a] {
    font-size: 12px;
    color: #5f6368;
    margin: 4px 0 0 0;
}

/* Radar Insights */
.radar-panel .panel-header[b-sp4ds9618a] {
    align-items: flex-start;
}

.radar-refresh[b-sp4ds9618a] {
    border: 2px solid #e3e7ee;
    color: #0c57f0;
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.radar-refresh:hover[b-sp4ds9618a] {
    border-color: #0c57f0;
    background: rgba(12, 87, 240, 0.08);
}

.radar-chart-card[b-sp4ds9618a] {
    margin-top: 20px;
    background: #f8faff;
    border: 1px solid #e4e9f2;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.radar-chart-card[b-sp4ds9618a]  canvas {
    width: 100% !important;
    height: 340px !important;
}

.radar-label-chips[b-sp4ds9618a] {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.radar-chip[b-sp4ds9618a] {
    border: none;
    border-radius: 999px;
    padding: 8px 16px;
    background: #ffffff;
    color: #0c57f0;
    font-weight: 600;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 10px rgba(12, 87, 240, 0.15);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.radar-chip:hover[b-sp4ds9618a] {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(12, 87, 240, 0.25);
}

.radar-empty[b-sp4ds9618a] {
    border: 1px dashed #d7deed;
    border-radius: 14px;
    background: #fdfdff;
}

@media (max-width: 768px) {
    .radar-chart-card[b-sp4ds9618a]  canvas {
        height: 280px !important;
    }
}

/* Empty State */
.empty-state[b-sp4ds9618a] {
    text-align: center;
    padding: 60px 20px;
}

.empty-state-icon[b-sp4ds9618a] {
    font-size: 64px;
    color: #e9ecef;
    margin-bottom: 20px;
}

.empty-state-text[b-sp4ds9618a] {
    font-size: 16px;
    color: #6c757d;
    margin-bottom: 20px;
}

/* Loading States */
.loading-container[b-sp4ds9618a] {
    text-align: center;
    padding: 60px 20px;
}

.loading-container.loading-compact[b-sp4ds9618a] {
    padding: 40px 20px;
}

.loading-text[b-sp4ds9618a] {
    margin-top: 16px;
    color: #6c757d;
    font-size: 14px;
}

.spinner-primary[b-sp4ds9618a] {
    color: #0c57f0;
    width: 3rem;
    height: 3rem;
}

.spinner-primary.spinner-small[b-sp4ds9618a] {
    width: 2rem;
    height: 2rem;
}

/* Responsive Design */
/* Large Tablets and Small Laptops - 768px to 999px */
@media (max-width: 999px) and (min-width: 768px) {
    .history-card[b-sp4ds9618a] {
        flex-wrap: wrap;
        gap: 12px;
    }

    .history-card .lesson-content[b-sp4ds9618a] {
        flex: 1 1 100%;
        padding-right: 0;
    }

    .history-card .lesson-actions[b-sp4ds9618a] {
        flex: 1 1 100%;
        margin-left: 0;
        justify-content: flex-end;
        gap: 8px;
    }

    .lesson-btn[b-sp4ds9618a] {
        padding: 8px 14px;
        font-size: 12px;
    }

    /* Search and filter adjustments for tablets */
    .search-box[b-sp4ds9618a] {
        min-width: 200px;
        flex: 1 1 100%;
        margin-bottom: 8px;
    }

    .history-filters[b-sp4ds9618a] {
        gap: 12px;
    }

    .date-filter[b-sp4ds9618a] {
        flex: 1 1 100%;
        justify-content: flex-start;
    }
}

/* Tablets and Below - 991px and smaller */
@media (max-width: 991px) {
    .history-summary[b-sp4ds9618a] {
        width: 100%;
        justify-content: flex-start;
    }

    .row.gx-4 .summary-item[b-sp4ds9618a] {
        padding: 16px;
    }

    .summary-icon[b-sp4ds9618a] {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .summary-value[b-sp4ds9618a] {
        font-size: 24px;
    }

    .history-filters[b-sp4ds9618a] {
        gap: 12px;
    }

    .date-filter[b-sp4ds9618a] {
        flex-direction: column;
    }

    .btn-filter[b-sp4ds9618a] {
        width: 100%;
        justify-content: center;
    }

    .calendar-wrapper[b-sp4ds9618a] {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .history-summary[b-sp4ds9618a] {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .history-summary .summary-item[b-sp4ds9618a] {
        width: 100%;
        padding: 8px 16px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .history-summary .summary-number[b-sp4ds9618a] {
        font-size: 20px;
    }

    .history-summary .summary-label[b-sp4ds9618a] {
        font-size: 11px;
    }

    .row.gx-4 .summary-item[b-sp4ds9618a] {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .summary-icon[b-sp4ds9618a] {
        margin-bottom: 8px;
    }

    .lesson-score[b-sp4ds9618a] {
        width: 100%;
        justify-content: center;
        margin-top: 12px;
    }

    /* Mobile search and filter adjustments */
    .history-filters[b-sp4ds9618a] {
        flex-direction: column;
        gap: 12px;
    }

    .search-box[b-sp4ds9618a] {
        min-width: 0;
        width: 100%;
        flex: 1 1 100%;
        margin-bottom: 0;
    }

    .search-input[b-sp4ds9618a] {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 12px 16px 12px 44px;
    }

    .search-icon[b-sp4ds9618a] {
        left: 16px;
        font-size: 16px;
    }

    .date-filter[b-sp4ds9618a] {
        width: 100%;
        flex-direction: column;
        gap: 8px;
    }

    .btn-filter[b-sp4ds9618a] {
        width: 100%;
        justify-content: center;
        padding: 12px 16px;
        font-size: 14px;
    }

    .calendar-wrapper[b-sp4ds9618a] {
        width: 100%;
    }

    .calendar-btn[b-sp4ds9618a] {
        width: 100%;
    }

    /* Mobile lesson card adjustments */
    .history-card[b-sp4ds9618a] {
        flex-wrap: wrap;
        gap: 12px;
        padding: 12px;
    }

    .history-card .lesson-content[b-sp4ds9618a] {
        flex: 1 1 100%;
    }

    .history-card .lesson-actions[b-sp4ds9618a] {
        flex: 1 1 100%;
        margin-left: 0;
        justify-content: flex-start;
        gap: 8px;
    }

    .lesson-btn[b-sp4ds9618a] {
        flex: 1;
        justify-content: center;
        padding: 10px 12px;
        font-size: 13px;
    }

    .lesson-icon-wrapper[b-sp4ds9618a] {
        width: 40px;
        height: 40px;
    }

    .lesson-type-icon[b-sp4ds9618a] {
        font-size: 18px;
    }
}

/* KS2 Theme Font Weight Override - Change all bold (700) to semi-bold (600) */
[data-theme="KS2"] .page-title[b-sp4ds9618a],
[data-theme="[KS2]"] .page-title[b-sp4ds9618a],
[data-theme="KS2"] .history-item-title[b-sp4ds9618a],
[data-theme="[KS2]"] .history-item-title[b-sp4ds9618a],
[data-theme="KS2"] .score-display[b-sp4ds9618a],
[data-theme="[KS2]"] .score-display[b-sp4ds9618a] {
    font-weight: 600 !important;
}




/* /Pages/Mentor/MentorSelectStudent.razor.rz.scp.css */
.select-panel[b-gjkqbh08si]{
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  border-radius:var(--radius,10px);
  box-shadow:var(--shadow,0 10px 24px rgba(0,0,0,.06));
  padding:1.5rem;
  max-width:760px;
  margin:0 auto;
}

.select-panel-header[b-gjkqbh08si]{
  display:flex;
  align-items:flex-start;
  gap:1rem;
  margin-bottom:1.25rem;
}

.select-icon[b-gjkqbh08si]{
  width:48px;
  height:48px;
  border-radius:14px;
  background:linear-gradient(135deg,var(--brand-primary,#0c57f0),var(--brand-secondary,#1b6ec2));
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  box-shadow:0 10px 18px rgba(12,87,240,.18);
}

.select-title[b-gjkqbh08si]{
  margin:0;
  font-size:1.25rem;
  font-weight:800;
  color:var(--text-primary,#333);
}

.select-subtitle[b-gjkqbh08si]{
  margin:.35rem 0 0 0;
  color:var(--text-secondary,#666);
}

.form-row[b-gjkqbh08si]{
  margin-top:.5rem;
}

.form-label[b-gjkqbh08si]{
  font-weight:700;
  color:var(--text-primary,#333);
  margin-bottom:.5rem;
}

.select-input[b-gjkqbh08si]{
  border-radius:var(--radius-small,8px);
  border:2px solid var(--border-color,#dee2e6);
  padding:.85rem .9rem;
}

.select-input:focus[b-gjkqbh08si]{
  border-color:var(--brand-primary,#0c57f0);
  box-shadow:0 0 0 .2rem rgba(12,87,240,.12);
}

.actions[b-gjkqbh08si]{
  display:flex;
  justify-content:flex-end;
  gap:.75rem;
  margin-top:1.25rem;
}

.loading[b-gjkqbh08si]{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:.75rem;
  padding:1.25rem 0;
}

.loading-text[b-gjkqbh08si]{
  color:var(--text-secondary,#666);
  font-weight:600;
}

/* Searchable Select Dropdown (matches AskMe) */
.searchable-select-wrapper[b-gjkqbh08si] {
  position: relative;
}

.search-input-container[b-gjkqbh08si] {
  position: relative;
  display: flex;
  align-items: center;
}

.search-icon[b-gjkqbh08si] {
  position: absolute;
  left: 14px;
  color: #999;
  font-size: 14px;
  pointer-events: none;
}

.search-input[b-gjkqbh08si] {
  padding-left: 40px !important;
  padding-right: 40px !important;
  -webkit-appearance: none;
  appearance: none;
  font-size: 16px;
}

.clear-search-btn[b-gjkqbh08si] {
  position: absolute;
  right: 8px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #e9ecef;
  border: none;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.clear-search-btn:hover[b-gjkqbh08si] {
  background: #dee2e6;
  color: #333;
}

.selected-topic-chip[b-gjkqbh08si] {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  color: white;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.selected-topic-chip i[b-gjkqbh08si] {
  font-size: 14px;
}

.remove-chip-btn[b-gjkqbh08si] {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 12px;
}

.remove-chip-btn:hover[b-gjkqbh08si] {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.student-dropdown[b-gjkqbh08si] {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: white;
  border: 2px solid var(--brand-primary);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  max-height: 400px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
}

.student-dropdown-header[b-gjkqbh08si] {
  padding: 12px 16px;
  border-bottom: 1px solid #e9ecef;
  background: #f8f9fa;
}

.student-list[b-gjkqbh08si] {
  max-height: 320px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.student-item[b-gjkqbh08si] {
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  border-bottom: 1px solid #f8f9fa;
  -webkit-tap-highlight-color: rgba(12, 87, 240, 0.1);
  touch-action: manipulation;
  user-select: none;
  -webkit-user-select: none;
}

.student-item:hover[b-gjkqbh08si],
.student-item:active[b-gjkqbh08si] {
  background: linear-gradient(90deg, rgba(12, 87, 240, 0.05), rgba(27, 110, 194, 0.05));
  padding-left: 20px;
}

.student-item-icon[b-gjkqbh08si] {
  color: var(--brand-primary);
  font-size: 16px;
  flex-shrink: 0;
}

.student-item-text[b-gjkqbh08si] {
  flex: 1;
  color: #333;
  font-size: 14px;
  font-weight: 500;
}

.student-dropdown-footer[b-gjkqbh08si] {
  padding: 12px 16px;
  border-top: 1px solid #e9ecef;
  background: #f8f9fa;
}

.no-results[b-gjkqbh08si] {
  padding: 40px 20px;
  text-align: center;
  color: #999;
}

.no-results i[b-gjkqbh08si] {
  font-size: 48px;
  margin-bottom: 12px;
  opacity: 0.5;
}

.no-results p[b-gjkqbh08si] {
  margin: 0;
  font-size: 14px;
}

@media (max-width: 768px){
  .select-panel[b-gjkqbh08si]{ padding:1.25rem; }
  .actions[b-gjkqbh08si]{ justify-content:stretch; }
  .actions .btn[b-gjkqbh08si]{ flex:1; }
}










/* /Pages/Payment/MakeOrder.razor.rz.scp.css */
.payment-page[b-fshxec3pmz] {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Page Header */
.page-header[b-fshxec3pmz] {
    background: linear-gradient(135deg, #0c57f0, #1b6ec2);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.page-header[b-fshxec3pmz]::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.page-title[b-fshxec3pmz] {
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.page-title i[b-fshxec3pmz] {
    font-size: 28px;
}

.page-subtitle[b-fshxec3pmz] {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    margin: 8px 0 0 0;
}

.security-badge[b-fshxec3pmz] {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 12px 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
}

.security-badge i[b-fshxec3pmz] {
    font-size: 18px;
}

/* Panel Styles */
.panel[b-fshxec3pmz] {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
    transition: all 0.2s ease;
}

.payment-panel[b-fshxec3pmz] {
    border-top: 4px solid #0c57f0;
}

.order-summary-panel[b-fshxec3pmz] {
    border-top: 4px solid #28a745;
    position: sticky;
    top: 20px;
}

.panel-header[b-fshxec3pmz] {
    padding: 20px 24px;
    border-bottom: 2px solid #e9ecef;
    display: flex;
    align-items: center;
    gap: 12px;
}

.panel-icon[b-fshxec3pmz] {
    color: #0c57f0;
    font-size: 18px;
    line-height: 1;
}

.panel-title[b-fshxec3pmz] {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    line-height: 1;
    color: #333333;
}

.panel-content[b-fshxec3pmz] {
    padding: 24px;
}

/* Form Styles */
.form-label[b-fshxec3pmz] {
    font-weight: 600;
    color: #333333;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-control[b-fshxec3pmz] {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 15px;
    transition: all 0.2s ease;
}

.form-control:focus[b-fshxec3pmz] {
    border-color: #0c57f0;
    box-shadow: 0 0 0 3px rgba(12, 87, 240, 0.1);
    outline: none;
}

.form-control[b-fshxec3pmz]::placeholder {
    color: #999999;
}

/* Card Input Styles - Opayo Own Form */
#cardholder-name[b-fshxec3pmz],
#card-number[b-fshxec3pmz],
#expiry-date[b-fshxec3pmz],
#security-code[b-fshxec3pmz] {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 15px;
    transition: all 0.2s ease;
}

#cardholder-name:focus[b-fshxec3pmz],
#card-number:focus[b-fshxec3pmz],
#expiry-date:focus[b-fshxec3pmz],
#security-code:focus[b-fshxec3pmz] {
    border-color: #0c57f0;
    box-shadow: 0 0 0 3px rgba(12, 87, 240, 0.1);
    outline: none;
}

#card-number[b-fshxec3pmz] {
    font-family: 'Courier New', monospace;
    letter-spacing: 1px;
}

.alert-info[b-fshxec3pmz] {
    background-color: #e7f3ff;
    border-color: #b3d9ff;
    color: #004085;
    border-left: 4px solid #0c57f0;
}

/* Button Styles */
.btn-primary[b-fshxec3pmz] {
    background: linear-gradient(135deg, #0c57f0, #1b6ec2);
    border: none;
    border-radius: 10px;
    padding: 14px 28px;
    font-weight: 700;
    font-size: 16px;
    color: #ffffff;
    transition: all 0.2s ease;
    box-shadow: 0 4px 16px rgba(12, 87, 240, 0.3);
}

.btn-primary:hover:not(:disabled)[b-fshxec3pmz] {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(12, 87, 240, 0.4);
    background: linear-gradient(135deg, #0b4dd6, #1a62b0);
}

.btn-primary:disabled[b-fshxec3pmz] {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-lg[b-fshxec3pmz] {
    padding: 16px 32px;
    font-size: 18px;
}

/* Order Summary */
.order-item[b-fshxec3pmz] {
    padding: 16px 0;
}

.order-item-name[b-fshxec3pmz] {
    font-size: 16px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 4px;
}

.order-item-description[b-fshxec3pmz] {
    font-size: 14px;
    margin: 0;
}

.order-totals[b-fshxec3pmz] {
    margin-top: 16px;
}

.order-total-row[b-fshxec3pmz] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 15px;
}

.order-total-label[b-fshxec3pmz] {
    color: #666666;
    font-weight: 500;
}

.order-total-value[b-fshxec3pmz] {
    color: #333333;
    font-weight: 600;
}

.order-total-final[b-fshxec3pmz] {
    font-size: 20px;
    padding: 12px 0;
}

.order-total-final .order-total-label[b-fshxec3pmz],
.order-total-final .order-total-value[b-fshxec3pmz] {
    color: #0c57f0;
    font-weight: 700;
}

/* Security Features */
.security-features h6[b-fshxec3pmz] {
    font-size: 14px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 12px;
}

.feature-list[b-fshxec3pmz] {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li[b-fshxec3pmz] {
    padding: 8px 0;
    font-size: 13px;
    color: #666666;
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-list li i[b-fshxec3pmz] {
    color: #28a745;
    font-size: 14px;
}

/* Accepted Cards */
.accepted-cards h6[b-fshxec3pmz] {
    font-size: 14px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 12px;
}

.card-logos[b-fshxec3pmz] {
    display: flex;
    gap: 12px;
    font-size: 32px;
}

.card-logos i[b-fshxec3pmz] {
    color: #666666;
    transition: all 0.2s ease;
}

.card-logos i:hover[b-fshxec3pmz] {
    color: #0c57f0;
    transform: translateY(-2px);
}

/* Loading State */
.loading-container[b-fshxec3pmz] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    padding: 40px;
    text-align: center;
}

.spinner-primary[b-fshxec3pmz] {
    width: 3rem;
    height: 3rem;
    border-width: 0.3em;
    border-color: #0c57f0;
    border-right-color: transparent;
}

.loading-text[b-fshxec3pmz] {
    font-size: 18px;
    font-weight: 600;
    color: #333333;
    margin-top: 20px;
    margin-bottom: 8px;
}

.loading-subtext[b-fshxec3pmz] {
    font-size: 14px;
    color: #666666;
    margin: 0;
}

/* Success State */
.success-container[b-fshxec3pmz] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    padding: 40px;
    text-align: center;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.success-icon[b-fshxec3pmz] {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #28a745, #20c997);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 4px 20px rgba(40, 167, 69, 0.3);
}

.success-icon i[b-fshxec3pmz] {
    font-size: 60px;
    color: #ffffff;
}

.success-title[b-fshxec3pmz] {
    font-size: 32px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 12px;
}

.success-message[b-fshxec3pmz] {
    font-size: 16px;
    color: #666666;
    margin-bottom: 24px;
}

.success-details[b-fshxec3pmz] {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 24px;
    width: 100%;
    max-width: 500px;
}

.success-details p[b-fshxec3pmz] {
    margin: 8px 0;
    font-size: 15px;
    color: #333333;
}

/* Alert Styles */
.alert[b-fshxec3pmz] {
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 20px;
    border: none;
}

.alert-danger[b-fshxec3pmz] {
    background: #fff5f5;
    color: #dc3545;
    border-left: 4px solid #dc3545;
}

.alert-danger i[b-fshxec3pmz] {
    margin-right: 8px;
}

/* Responsive Design */
@media (max-width: 991px) {
    .order-summary-panel[b-fshxec3pmz] {
        position: static;
        margin-top: 20px;
    }

    .page-header[b-fshxec3pmz] {
        padding: 20px;
    }

    .page-title[b-fshxec3pmz] {
        font-size: 24px;
    }

    .security-badge[b-fshxec3pmz] {
        margin-top: 12px;
    }
}

@media (max-width: 767px) {
    .panel-content[b-fshxec3pmz] {
        padding: 16px;
    }

    .page-header[b-fshxec3pmz] {
        padding: 16px;
    }

    .page-title[b-fshxec3pmz] {
        font-size: 20px;
    }

    .page-title i[b-fshxec3pmz] {
        font-size: 20px;
    }

    .success-icon[b-fshxec3pmz] {
        width: 80px;
        height: 80px;
    }

    .success-icon i[b-fshxec3pmz] {
        font-size: 40px;
    }

    .success-title[b-fshxec3pmz] {
        font-size: 24px;
    }

    .card-logos[b-fshxec3pmz] {
        justify-content: center;
    }
}

/* Validation Summary */
[b-fshxec3pmz] .validation-summary {
    background: #fff5f5;
    border-left: 4px solid #dc3545;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 20px;
}

[b-fshxec3pmz] .validation-message {
    color: #dc3545;
    font-size: 13px;
    margin-top: 4px;
}



/* /Pages/QuizPreview/PreviewQuiz.razor.rz.scp.css */
/* PreviewQuiz Page Styles - Theme-compliant based on theme.cursorrules */
/* All fonts use var(--font-family) for theme consistency */


.navbar-brand img[b-8sbdv3akir] {
    width: 130px;
}

.lesson-info-nav[b-8sbdv3akir] {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
    padding-right: 20px;
}

/* Quiz Title Badge - Blue box with brand colors */
.quiz-title-badge[b-8sbdv3akir] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #0c57f0, #1b6ec2);
    color: #fff;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 15px;
    font-weight: 700;
    font-family: var(--font-family);
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(12, 87, 240, 0.3);
}

.quiz-title-badge i[b-8sbdv3akir] {
    font-size: 16px;
}

/* ===== CONTAINER STYLING ===== */
.container-lrg[b-8sbdv3akir] {
    max-width: 1400px;
    margin: 0 auto;
}

.container-lrg.container-bg[b-8sbdv3akir] {
    background: #eee;
    border-radius: 10px;
}

/* ===== QUIZ PANEL ===== */
.quiz-panel[b-8sbdv3akir] {
    background: white;
    border-radius: 10px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.question-header[b-8sbdv3akir] {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e9ecef;
}

.question-content[b-8sbdv3akir] {
    min-height: 300px;
}

.question-number-badge[b-8sbdv3akir] {
    display: flex;
    align-items: center;
    gap: 15px;
}

.circleQuestion[b-8sbdv3akir] {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0c57f0, #1b6ec2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-family);
    box-shadow: 0 4px 16px rgba(12, 87, 240, 0.3);
}

.question-label[b-8sbdv3akir] {
    font-size: 1.1rem;
    font-weight: 600;
    font-family: var(--font-family);
    color: #666666;
}

/* ===== ANIMATIONS ===== */
.fade-in[b-8sbdv3akir] {
    animation: fadeIn-b-8sbdv3akir 0.3s ease-in;
}

@keyframes fadeIn-b-8sbdv3akir {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== LOADING STATES ===== */
.loading-container[b-8sbdv3akir] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    min-height: 300px;
}

.loading-text[b-8sbdv3akir] {
    margin-top: 15px;
    color: #666666;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: var(--font-family);
}

.spinner-primary[b-8sbdv3akir] {
    color: #0c57f0;
    width: 3rem;
    height: 3rem;
    border-width: 0.3rem;
}

/* ===== EXPLANATION SECTION ===== */
/* Matches Explanations.razor styling */
.explanationText[b-8sbdv3akir] {
    background: #f0f7ff;
    border-left: 4px solid #0c57f0;
    padding: 16px 20px;
    border-radius: 8px;
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.7;
    font-family: var(--font-family);
    color: #333333;
}

.video-explanation-btn[b-8sbdv3akir] {
    background: linear-gradient(135deg, #0c57f0, #1b6ec2);
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-family);
    border-radius: 10px;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 8px rgba(12, 87, 240, 0.3);
}

.video-explanation-btn:hover[b-8sbdv3akir] {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(12, 87, 240, 0.4);
    color: white;
}

.video-explanation-btn i[b-8sbdv3akir] {
    font-size: 16px;
}

/* ===== ACTION BUTTONS ===== */
.action-buttons[b-8sbdv3akir] {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 20px 0;
}

.btn-action[b-8sbdv3akir] {
    margin: 5px;
    min-width: 140px;
    padding: 12px 24px;
    font-weight: 600;
    font-family: var(--font-family);
    border-radius: 10px;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-action:hover[b-8sbdv3akir] {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.btn-primary.btn-action[b-8sbdv3akir] {
    background: linear-gradient(135deg, #0c57f0, #1b6ec2);
    border: none;
}

.btn-primary.btn-action:hover[b-8sbdv3akir] {
    box-shadow: 0 4px 16px rgba(12, 87, 240, 0.3);
}

.btn-secondary.btn-action[b-8sbdv3akir] {
    background: white;
    color: #0b5ed7;
    border: 2px solid #0b5ed7;
}

.btn-success.btn-action[b-8sbdv3akir] {
    background: linear-gradient(135deg, #28a745, #20c997);
    border: none;
}

/* ===== SIDEBAR PANELS ===== */
.sidebar-panel[b-8sbdv3akir] {
    background: white;
    border-radius: 10px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.panel-header[b-8sbdv3akir] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 16px;
    border-bottom: 2px solid #e9ecef;
    margin-bottom: 20px;
}

.panel-icon[b-8sbdv3akir] {
    font-size: 18px;
    color: #0c57f0;
    line-height: 1;
}

.panel-title[b-8sbdv3akir] {
    font-size: 16px;
    font-weight: 600;
    font-family: var(--font-family);
    color: #333333;
    margin: 0;
    line-height: 1;
}

.sidebar-panel p[b-8sbdv3akir] {
    font-family: var(--font-family);
    color: #666666;
    margin-bottom: 12px;
    line-height: 1.6;
}

.sidebar-panel strong[b-8sbdv3akir] {
    color: #333333;
    font-weight: 600;
}

/* ===== QUESTION NAVIGATOR ===== */
.question-numbers[b-8sbdv3akir] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(50px, 1fr));
    gap: 12px;
    margin-bottom: 24px;
}

.question-numbers .question-number[b-8sbdv3akir] {
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-weight: 700;
    font-family: var(--font-family);
    font-size: 1rem;
    transition: all 0.2s ease;
    border: 2px solid #dee2e6;
    background: #fafafa;
    color: #333333;
    cursor: pointer;
}

.question-numbers .question-number.current-question[b-8sbdv3akir] {
    background: #0b5ed7;
    color: white;
    border-color: #0b5ed7;
    box-shadow: 0 4px 16px rgba(11, 94, 215, 0.3);
}

.question-numbers .question-number:not(.current-question):hover[b-8sbdv3akir] {
    border-color: #0c57f0;
    transform: translateX(4px);
    background: white;
}

.question-number:hover[b-8sbdv3akir] {
    opacity: 0.8;
    transform: scale(1.05);
}

/* ===== NAVIGATION LEGEND ===== */
.navigation-legend[b-8sbdv3akir] {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 20px;
    border-top: 2px solid #e9ecef;
}

.legend-item[b-8sbdv3akir] {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-family);
    font-size: 14px;
}

.legend-dot[b-8sbdv3akir] {
    width: 24px;
    height: 24px;
    border-radius: 8px;
    flex-shrink: 0;
}

.legend-text[b-8sbdv3akir] {
    color: #666666;
    font-weight: 500;
}

/* ===== CARD TITLES ===== */
h3.card-title[b-8sbdv3akir] {
    font-family: var(--font-family);
    font-weight: 700;
    color: #333333;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 991px) {
    .lesson-info-nav[b-8sbdv3akir] {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        margin-left: 0;
        padding-right: 0;
        padding-top: 12px;
    }

    .quiz-title-badge[b-8sbdv3akir] {
        font-size: 14px;
    }

    .quiz-panel[b-8sbdv3akir] {
        padding: 20px;
    }

    .sidebar-panel[b-8sbdv3akir] {
        margin-top: 0;
        padding: 20px;
    }

    .action-buttons[b-8sbdv3akir] {
        flex-direction: column;
    }

    .btn-action[b-8sbdv3akir] {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .quiz-title-badge[b-8sbdv3akir] {
        font-size: 13px;
        padding: 8px 16px;
    }

    .quiz-panel[b-8sbdv3akir] {
        padding: 16px;
    }

    .sidebar-panel[b-8sbdv3akir] {
        padding: 16px;
    }

    .container-lrg[b-8sbdv3akir] {
        padding: 10px !important;
    }

    .question-number-badge[b-8sbdv3akir] {
        gap: 10px;
    }

    .circleQuestion[b-8sbdv3akir] {
        width: 42px;
        height: 42px;
        font-size: 1.2rem;
    }

    .question-label[b-8sbdv3akir] {
        font-size: 1rem;
    }
}

/* KS2 Theme Font Weight Override - Change all bold (700) to semi-bold (600) */
[data-theme="KS2"] .panel-title[b-8sbdv3akir],
[data-theme="[KS2]"] .panel-title[b-8sbdv3akir],
[data-theme="KS2"] .question-label[b-8sbdv3akir],
[data-theme="[KS2]"] .question-label[b-8sbdv3akir],
[data-theme="KS2"] .answer-section-title[b-8sbdv3akir],
[data-theme="[KS2]"] .answer-section-title[b-8sbdv3akir],
[data-theme="KS2"] .quiz-header h2[b-8sbdv3akir],
[data-theme="[KS2]"] .quiz-header h2[b-8sbdv3akir] {
    font-weight: 600 !important;
}

/* /Pages/TakeLesson.razor.rz.scp.css */
/* ===== TAKE LESSON PAGE SCOPED STYLES ===== */
/* Scoped CSS for TakeLesson.razor component */

/* Accessibility - Skip Link */
[b-p8yvhddbsx] .skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #0c57f0;
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 0 0 4px 0;
    z-index: 100;
}

[b-p8yvhddbsx] .skip-link:focus {
    top: 0;
    outline: 3px solid #fff;
    outline-offset: 2px;
}

/* Accessibility - Visually Hidden */
[b-p8yvhddbsx] .visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Accessibility - Font Size Classes */
:global(body.font-size-80)[b-p8yvhddbsx]  .quiz-panel,
:global(body.font-size-80)[b-p8yvhddbsx]  .quiz-panel *:not(.lesson-title-nav):not(.lesson-title-nav *),
:global(body.font-size-80)[b-p8yvhddbsx]  .sidebar-panel,
:global(body.font-size-80)[b-p8yvhddbsx]  .sidebar-panel *:not(.lesson-title-nav):not(.lesson-title-nav *),
:global(body.font-size-80)[b-p8yvhddbsx]  .completion-panel,
:global(body.font-size-80)[b-p8yvhddbsx]  .completion-panel * {
    font-size: 0.8em !important;
}

:global(body.font-size-90)[b-p8yvhddbsx]  .quiz-panel,
:global(body.font-size-90)[b-p8yvhddbsx]  .quiz-panel *:not(.lesson-title-nav):not(.lesson-title-nav *),
:global(body.font-size-90)[b-p8yvhddbsx]  .sidebar-panel,
:global(body.font-size-90)[b-p8yvhddbsx]  .sidebar-panel *:not(.lesson-title-nav):not(.lesson-title-nav *),
:global(body.font-size-90)[b-p8yvhddbsx]  .completion-panel,
:global(body.font-size-90)[b-p8yvhddbsx]  .completion-panel * {
    font-size: 0.9em !important;
}

:global(body.font-size-110)[b-p8yvhddbsx]  .quiz-panel,
:global(body.font-size-110)[b-p8yvhddbsx]  .quiz-panel *:not(.lesson-title-nav):not(.lesson-title-nav *),
:global(body.font-size-110)[b-p8yvhddbsx]  .sidebar-panel,
:global(body.font-size-110)[b-p8yvhddbsx]  .sidebar-panel *:not(.lesson-title-nav):not(.lesson-title-nav *),
:global(body.font-size-110)[b-p8yvhddbsx]  .completion-panel,
:global(body.font-size-110)[b-p8yvhddbsx]  .completion-panel * {
    font-size: 1.1em !important;
}

:global(body.font-size-120)[b-p8yvhddbsx]  .quiz-panel,
:global(body.font-size-120)[b-p8yvhddbsx]  .quiz-panel *:not(.lesson-title-nav):not(.lesson-title-nav *),
:global(body.font-size-120)[b-p8yvhddbsx]  .sidebar-panel,
:global(body.font-size-120)[b-p8yvhddbsx]  .sidebar-panel *:not(.lesson-title-nav):not(.lesson-title-nav *),
:global(body.font-size-120)[b-p8yvhddbsx]  .completion-panel,
:global(body.font-size-120)[b-p8yvhddbsx]  .completion-panel * {
    font-size: 1.2em !important;
}

:global(body.font-size-130)[b-p8yvhddbsx]  .quiz-panel,
:global(body.font-size-130)[b-p8yvhddbsx]  .quiz-panel *:not(.lesson-title-nav):not(.lesson-title-nav *),
:global(body.font-size-130)[b-p8yvhddbsx]  .sidebar-panel,
:global(body.font-size-130)[b-p8yvhddbsx]  .sidebar-panel *:not(.lesson-title-nav):not(.lesson-title-nav *),
:global(body.font-size-130)[b-p8yvhddbsx]  .completion-panel,
:global(body.font-size-130)[b-p8yvhddbsx]  .completion-panel * {
    font-size: 1.3em !important;
}

/* Reading Mode Styles - W3C WCAG 2.1 Level AA Compliant */
/* Warm, sepia-toned color scheme reduces eye strain for extended reading */
:global(body.reading-mode)[b-p8yvhddbsx]  .quiz-panel,
:global(body.reading-mode)[b-p8yvhddbsx]  .sidebar-panel,
:global(body.reading-mode)[b-p8yvhddbsx]  .completion-panel {
    background: #fefcf5 !important;
    box-shadow: 0 2px 8px rgba(139, 115, 85, 0.15) !important;
    border-color: #d4c5b0 !important;
}

:global(body.reading-mode)[b-p8yvhddbsx]  .question-text-container {
    background: #fff9eb !important;
    border-left: 4px solid #8b7355 !important;
    padding: 20px !important;
    line-height: 1.8 !important; /* WCAG: Better readability */
}

:global(body.reading-mode)[b-p8yvhddbsx]  .answer-option {
    background: #fefcf5 !important;
    border: 2px solid #d4c5b0 !important;
    color: #2d2416 !important;
}

:global(body.reading-mode)[b-p8yvhddbsx]  .answer-option:hover {
    background: #fff9eb !important;
    border-color: #8b7355 !important;
    box-shadow: 0 2px 8px rgba(139, 115, 85, 0.2) !important;
}

:global(body.reading-mode)[b-p8yvhddbsx]  .answer-option.answer-selected {
    background: #fff3d6 !important;
    border: 3px solid #c4a574 !important;
    box-shadow: 0 0 0 2px rgba(196, 165, 116, 0.3) !important;
}

/* Typography - WCAG 2.1: Ensure 4.5:1 contrast ratio */
:global(body.reading-mode)[b-p8yvhddbsx]  h1,
:global(body.reading-mode)[b-p8yvhddbsx]  h2,
:global(body.reading-mode)[b-p8yvhddbsx]  h3,
:global(body.reading-mode)[b-p8yvhddbsx]  h4,
:global(body.reading-mode)[b-p8yvhddbsx]  .question-label,
:global(body.reading-mode)[b-p8yvhddbsx]  .answer-section-title {
    color: #2d2416 !important;
    font-weight: 600 !important;
}

:global(body.reading-mode)[b-p8yvhddbsx]  p,
:global(body.reading-mode)[b-p8yvhddbsx]  .question-text-content,
:global(body.reading-mode)[b-p8yvhddbsx]  .answer-option label {
    color: #3d3020 !important;
    line-height: 1.7 !important;
    font-size: 1.05em !important;
}

:global(body.reading-mode)[b-p8yvhddbsx]  .container-bg {
    background: #f5f1e8 !important;
}

/* Reading Mode: Navigation and panels */
:global(body.reading-mode)[b-p8yvhddbsx]  .lesson-nav {
    background: linear-gradient(135deg, #f9f3e6, #f5f1e8) !important;
    border-color: #d4c5b0 !important;
}

:global(body.reading-mode)[b-p8yvhddbsx]  .panel-header {
    background: #f9f3e6 !important;
    color: #2d2416 !important;
    border-bottom: 2px solid #d4c5b0 !important;
}

/* Improve focus indicators in reading mode */
:global(body.reading-mode)[b-p8yvhddbsx]  button:focus,
:global(body.reading-mode)[b-p8yvhddbsx]  input:focus,
:global(body.reading-mode)[b-p8yvhddbsx]  .answer-option:focus-within {
    outline: 3px solid #8b7355 !important;
    outline-offset: 3px !important;
    box-shadow: 0 0 0 3px rgba(139, 115, 85, 0.3) !important;
}

/* Lesson Navigation Header */
[b-p8yvhddbsx] .lesson-info-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: auto;
    padding-right: 20px;
}

[b-p8yvhddbsx] .day-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #0c57f0, #1b6ec2);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(12, 87, 240, 0.3);
}

[b-p8yvhddbsx] .day-badge i {
    font-size: 14px;
}

[b-p8yvhddbsx] .lesson-title-nav {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); /* WCAG: Improves contrast for white text */
}

/* Reading Mode: Change title to dark text with proper contrast */
:global(body.reading-mode)[b-p8yvhddbsx]  .lesson-title-nav {
    color: #2d2416;
    text-shadow: none;
}

/* Quiz Panel */
[b-p8yvhddbsx] .quiz-panel {
    background: #fff;
    border-radius: 10px;
    padding: 24px;
    margin-top: 0;
    margin-bottom: 20px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    min-height: 600px;
}

[b-p8yvhddbsx] .question-header {
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e9ecef;
}

[b-p8yvhddbsx] .question-number-badge {
    display: flex;
    align-items: center;
    gap: 12px;
}

[b-p8yvhddbsx] .question-label {
    font-size: 18px;
    font-weight: 700;
    color: #333;
}

[b-p8yvhddbsx] .question-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

[b-p8yvhddbsx] .question-text-container {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #0c57f0;
}

[b-p8yvhddbsx] .question-image-container {
    margin-top: 20px;
    border-radius: 10px;
    overflow: hidden;
}

/* Answer Section */
[b-p8yvhddbsx] .answer-section {
    margin-top: 24px;
}

[b-p8yvhddbsx] .answer-section fieldset {
    border: none;
    padding: 0;
    margin: 0;
}

[b-p8yvhddbsx] .answer-section legend.answer-section-title {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    float: none;
    width: auto;
}

[b-p8yvhddbsx] .answer-section-title i {
    color: #0c57f0;
    font-size: 18px;
}

[b-p8yvhddbsx] .answer-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

[b-p8yvhddbsx] .answer-option {
    background: #fff;
    border: 2px solid #dee2e6;
    border-radius: 10px;
    padding: 16px;
    transition: all 0.2s ease;
    cursor: pointer;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

[b-p8yvhddbsx] .answer-option:hover {
    border-color: #0c57f0;
    background: #f8f9fa;
    transform: translateX(4px);
}

[b-p8yvhddbsx] .answer-option.answer-selected {
    background: linear-gradient(135deg, rgba(12, 87, 240, 0.08), rgba(27, 110, 194, 0.08));
    border-color: #0c57f0;
    box-shadow: 0 2px 8px rgba(12, 87, 240, 0.15);
}

[b-p8yvhddbsx] .answer-option .form-check-input {
    margin-top: 4px;
    width: 20px;
    height: 20px;
    border: 2px solid #0c57f0;
    cursor: pointer;
    flex-shrink: 0;
}

[b-p8yvhddbsx] .answer-option .form-check-input:focus {
    outline: 3px solid #0c57f0;
    outline-offset: 2px;
    box-shadow: 0 0 0 0.2rem rgba(12, 87, 240, 0.25);
}

[b-p8yvhddbsx] .answer-option .form-check-input:checked {
    background-color: #0c57f0;
    border-color: #0c57f0;
}

[b-p8yvhddbsx] .answer-option:has(.form-check-input:focus) {
    border-color: #0c57f0;
    box-shadow: 0 0 0 3px rgba(12, 87, 240, 0.15);
}

[b-p8yvhddbsx] .answer-label {
    flex: 1;
    cursor: pointer;
    font-size: 16px;
    color: #333;
    line-height: 1.6;
}

/* Action Buttons */
[b-p8yvhddbsx] .action-buttons {
    display: flex;
    gap: 12px;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 2px solid #e9ecef;
}

[b-p8yvhddbsx] .btn-action {
    padding: 12px 24px;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

[b-p8yvhddbsx] .btn-action i {
    font-size: 16px;
}

[b-p8yvhddbsx] .btn-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

[b-p8yvhddbsx] .btn-action:focus {
    outline: 3px solid #0c57f0;
    outline-offset: 3px;
    box-shadow: 0 0 0 0.2rem rgba(12, 87, 240, 0.25);
}

[b-p8yvhddbsx] .btn-secondary.btn-action:focus {
    outline-color: #6c757d;
}

/* Sidebar Panels */
[b-p8yvhddbsx] .sidebar-panel {
    background: #fff;
    border-radius: 10px;
    padding: 24px;
    margin-top: 0;
    margin-bottom: 20px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

[b-p8yvhddbsx] .video-panel .video-wrapper {
    border-radius: 10px;
    overflow: hidden;
}

/* Navigation Panel */
[b-p8yvhddbsx] .navigation-panel {
    max-height: 500px;
}

[b-p8yvhddbsx] .question-numbers {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(45px, 1fr));
    gap: 10px;
    padding: 16px 0;
}

[b-p8yvhddbsx] .question-number {
    /* Reset button styles */
    background: #fafafa;
    border: 2px solid #dee2e6;
    color: #333;
    font-family: inherit;
    
    /* Button styling */
    width: 45px;
    height: 45px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

[b-p8yvhddbsx] .question-number:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    border-color: #0c57f0;
}

[b-p8yvhddbsx] .question-number:focus {
    outline: 3px solid #0c57f0;
    outline-offset: 2px;
}

[b-p8yvhddbsx] .question-number.current-question {
    background: #0b5ed7;
    color: #fff;
    border-color: #0b5ed7;
    cursor: default;
}

[b-p8yvhddbsx] .question-number.current-question:disabled {
    opacity: 1;
}

[b-p8yvhddbsx] .question-number.bg-green {
    background: #50c76f;
    color: #fff;
    border-color: #50c76f;
}

[b-p8yvhddbsx] .question-number.bg-warning {
    background: #fcfc4c;
    color: #333;
    border-color: #fcfc4c;
}

[b-p8yvhddbsx] .navigation-legend {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 2px solid #e9ecef;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

[b-p8yvhddbsx] .navigation-legend .legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

[b-p8yvhddbsx] .navigation-legend .legend-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    flex-shrink: 0;
}

[b-p8yvhddbsx] .navigation-legend .legend-text {
    font-size: 13px;
    font-weight: 500;
    color: #666;
}

/* Completion Panel */
[b-p8yvhddbsx] .completion-panel {
    background: #fff;
    border-radius: 10px;
    padding: 60px 40px;
    margin: 40px auto;
    max-width: 600px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

[b-p8yvhddbsx] .completion-icon {
    font-size: 110px;
    color: #28a745;
    margin-bottom: 24px;
    animation: scaleIn-b-p8yvhddbsx 0.5s ease-out;
}

@keyframes scaleIn-b-p8yvhddbsx {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

[b-p8yvhddbsx] .completion-title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 16px;
}

[b-p8yvhddbsx] .completion-message {
    font-size: 16px;
    color: #666;
    margin-bottom: 32px;
    line-height: 1.6;
}

[b-p8yvhddbsx] .completion-panel .btn {
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Responsive Design */
@media (max-width: 991px) {
    [b-p8yvhddbsx] .lesson-info-nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        margin-left: 0;
        padding-right: 0;
        padding-top: 12px;
    }

    [b-p8yvhddbsx] .lesson-title-nav {
        font-size: 18px;
    }

    [b-p8yvhddbsx] .quiz-panel {
        padding: 20px;
    }

    [b-p8yvhddbsx] .sidebar-panel {
        margin-top: 0;
        padding: 20px;
    }

    [b-p8yvhddbsx] .action-buttons {
        flex-direction: column;
    }

    [b-p8yvhddbsx] .btn-action {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    [b-p8yvhddbsx] .lesson-title-nav {
        font-size: 16px;
    }

    [b-p8yvhddbsx] .day-badge {
        font-size: 11px;
        padding: 6px 12px;
    }

    [b-p8yvhddbsx] .quiz-panel {
        padding: 16px;
    }

    [b-p8yvhddbsx] .question-text-container {
        padding: 16px;
    }

    [b-p8yvhddbsx] .answer-option {
        padding: 12px;
    }

    [b-p8yvhddbsx] .sidebar-panel {
        padding: 16px;
    }

    [b-p8yvhddbsx] .completion-panel {
        padding: 40px 20px;
    }

    [b-p8yvhddbsx] .completion-title {
        font-size: 24px;
    }

    [b-p8yvhddbsx] .completion-icon {
        font-size: 80px;
    }

    [b-p8yvhddbsx] .container-lrg {
        padding: 10px !important;
    }
}

/* KS2 Theme Font Weight Override */
:global([data-theme="KS2"])[b-p8yvhddbsx]  .question-label,
:global([data-theme="[KS2]"])[b-p8yvhddbsx]  .question-label,
:global([data-theme="KS2"])[b-p8yvhddbsx]  .panel-title,
:global([data-theme="[KS2]"])[b-p8yvhddbsx]  .panel-title,
:global([data-theme="KS2"])[b-p8yvhddbsx]  .answer-section-title,
:global([data-theme="[KS2]"])[b-p8yvhddbsx]  .answer-section-title,
:global([data-theme="KS2"])[b-p8yvhddbsx]  .legend-text,
:global([data-theme="[KS2]"])[b-p8yvhddbsx]  .legend-text,
:global([data-theme="KS2"])[b-p8yvhddbsx]  .completion-title,
:global([data-theme="[KS2]"])[b-p8yvhddbsx]  .completion-title {
    font-weight: 600 !important;
}

/* Copyright Footer */
.copyright-footer[b-p8yvhddbsx] {
    color: #ffffff;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

.copyright-footer p[b-p8yvhddbsx] {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

@media (max-width: 767px) {
    .copyright-footer[b-p8yvhddbsx] {
        padding: 15px;
        margin-top: 30px;
    }
    
    .copyright-footer p[b-p8yvhddbsx] {
        font-size: 12px;
    }
}

/* /Pages/UploadPolicy.razor.rz.scp.css */
.upload-policy-modal[b-sioagfrv5u] {
    font-family: var(--font-family);
    background: #ffffff;
    border-radius: var(--radius);
    padding: 24px;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    width: min(720px, 100%);
    margin: 0 auto;
    max-height: 80vh;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #888 transparent;
}

.upload-policy-modal[b-sioagfrv5u]::-webkit-scrollbar {
    width: 6px;
}

.upload-policy-modal[b-sioagfrv5u]::-webkit-scrollbar-track {
    background: transparent;
}

.upload-policy-modal[b-sioagfrv5u]::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.upload-policy-modal[b-sioagfrv5u]::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.policy-header[b-sioagfrv5u] {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.policy-icon-badge[b-sioagfrv5u] {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, #0c57f0, #1b6ec2);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 16px rgba(12, 87, 240, 0.3);
}

.policy-eyebrow[b-sioagfrv5u] {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 12px;
    font-weight: 700;
    color: #1b6ec2;
    margin: 0 0 4px 0;
}

.policy-header-text h2[b-sioagfrv5u] {
    font-size: 26px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 8px;
}

.policy-description[b-sioagfrv5u] {
    margin: 0;
    color: #555555;
    font-size: 15px;
    line-height: 1.5;
}

.policy-alert[b-sioagfrv5u] {
    display: flex;
    gap: 12px;
    padding: 16px;
    border-radius: var(--radius);
    background: rgba(237, 115, 35, 0.08);
    border: 1px solid rgba(237, 115, 35, 0.3);
    margin-bottom: 24px;
    align-items: flex-start;
}

.policy-alert i[b-sioagfrv5u] {
    font-size: 20px;
    color: #ed7323;
}

.policy-grid[b-sioagfrv5u] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.policy-card[b-sioagfrv5u] {
    background: #f8f9fa;
    border-radius: var(--radius);
    border: 1px solid var(--medium-gray);
    padding: 20px;
    transition: all 0.2s ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.policy-card:hover[b-sioagfrv5u] {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.policy-card.allowed[b-sioagfrv5u] {
    border-left: 4px solid var(--brand-primary);
}

.policy-card.not-allowed[b-sioagfrv5u] {
    border-left: 4px solid var(--danger);
    background: #fff5f5;
}

.policy-card-header[b-sioagfrv5u] {
    display: flex;
    gap: 12px;
    align-items: center;
}

.badge-icon[b-sioagfrv5u] {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #ffffff;
}

.allowed .badge-icon[b-sioagfrv5u] {
    background: linear-gradient(135deg, #0c57f0, #1b6ec2);
}

.not-allowed .badge-icon[b-sioagfrv5u] {
    background: linear-gradient(135deg, #dc3545, #f87171);
}

.policy-card-eyebrow[b-sioagfrv5u] {
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.08em;
    color: #6c757d;
    margin: 0;
}

.policy-card h3[b-sioagfrv5u] {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #333333;
}

.policy-list[b-sioagfrv5u] {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.policy-list li[b-sioagfrv5u] {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: #444444;
    font-size: 14px;
    line-height: 1.4;
}

.policy-card.allowed .policy-list i[b-sioagfrv5u] {
    color: var(--brand-primary);
}

.policy-card.not-allowed .policy-list i[b-sioagfrv5u] {
    color: var(--danger);
}

.policy-list i[b-sioagfrv5u] {
    font-size: 16px;
    margin-top: 2px;
}

.policy-tips[b-sioagfrv5u] {
    margin-bottom: 24px;
    border: 1px solid var(--medium-gray);
    background: var(--light-gray);
}

.policy-tips-header[b-sioagfrv5u] {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 16px;
}

.policy-tips-header i[b-sioagfrv5u] {
    font-size: 22px;
    color: #f4c430;
}

.policy-tips-grid[b-sioagfrv5u] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
}

.tip-item[b-sioagfrv5u] {
    background: #ffffff;
    border: 1px solid var(--medium-gray);
    border-radius: var(--radius-small);
    padding: 16px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    transition: all 0.2s ease;
}

.tip-item:hover[b-sioagfrv5u] {
    transform: translateX(4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.tip-icon[b-sioagfrv5u] {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(12, 87, 240, 0.1);
    color: var(--brand-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.tip-item h4[b-sioagfrv5u] {
    margin: 0 0 4px 0;
    font-size: 15px;
    color: #1b1f3b;
    font-weight: 600;
}

.tip-item p[b-sioagfrv5u] {
    margin: 0;
    font-size: 13px;
    color: #555555;
}

.policy-acknowledgement[b-sioagfrv5u] {
    display: flex;
    gap: 12px;
    padding: 16px;
    border-radius: var(--radius);
    background: rgba(12, 87, 240, 0.08);
    border: 1px solid rgba(12, 87, 240, 0.25);
    color: #1e2a5a;
    margin-bottom: 20px;
}

.policy-acknowledgement i[b-sioagfrv5u] {
    font-size: 20px;
    color: var(--brand-primary);
}

.policy-actions[b-sioagfrv5u] {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.policy-actions .btn[b-sioagfrv5u] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: var(--radius-small);
    font-weight: 600;
}

.policy-actions .btn-primary[b-sioagfrv5u] {
    background: linear-gradient(135deg, #0c57f0, #1b6ec2);
    border: none;
    box-shadow: 0 4px 16px rgba(12, 87, 240, 0.3);
}

.policy-actions .btn-primary:hover[b-sioagfrv5u] {
    transform: translateY(-2px);
}

.policy-actions .btn-secondary[b-sioagfrv5u] {
    border: 2px solid var(--brand-primary);
    color: var(--brand-primary);
    background: #ffffff;
}

.policy-actions .btn-secondary:hover[b-sioagfrv5u] {
    background: rgba(12, 87, 240, 0.08);
}

@media (max-width: 576px) {
    .upload-policy-modal[b-sioagfrv5u] {
        padding: 20px;
    }

    .policy-header[b-sioagfrv5u] {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .policy-grid[b-sioagfrv5u] {
        grid-template-columns: 1fr;
    }

    .policy-tips-grid[b-sioagfrv5u] {
        grid-template-columns: 1fr;
    }

    .policy-actions[b-sioagfrv5u] {
        flex-direction: column;
        align-items: stretch;
    }
}



