/* /Components/Account/Pages/ConfirmEmail.razor.rz.scp.css */
.login-container[b-x5n0f5hjnc] {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    max-width: 450px;
    margin: 40px auto;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    text-align: center;
}

.login-header[b-x5n0f5hjnc] {
    color: #2c3e50;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 5px;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 2px solid #f1f3f5;
    margin-top: 0;
}

.login-subheader[b-x5n0f5hjnc] {
    color: #576574;
    text-align: center;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.confirmation-icon[b-x5n0f5hjnc] {
    font-size: 3rem;
    margin-bottom: 15px;
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    margin: 0 auto 20px;
}

    .confirmation-icon:has(+ .login-header:first-of-type)[b-x5n0f5hjnc] {
        background-color: #d4edda;
        color: #28a745;
    }

/* Success state */
.login-container:has(.spinner) .confirmation-icon[b-x5n0f5hjnc] {
    background-color: #d4edda;
    color: #28a745;
}

/* Error state - when no spinner present */
.login-container:not(:has(.spinner)) .confirmation-icon[b-x5n0f5hjnc] {
    background-color: #f8d7da;
    color: #dc3545;
}

.redirect-note[b-x5n0f5hjnc] {
    color: #7f8c8d;
    font-size: 0.9rem;
    margin-top: 20px;
}

.spinner[b-x5n0f5hjnc] {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #e9ecef;
    border-top-color: #3498db;
    border-radius: 50%;
    animation: spin-b-x5n0f5hjnc 1s linear infinite;
    vertical-align: middle;
    margin-right: 8px;
}

@keyframes spin-b-x5n0f5hjnc {
    to {
        transform: rotate(360deg);
    }
}

.action-links[b-x5n0f5hjnc] {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-link[b-x5n0f5hjnc] {
    display: block;
    padding: 14px;
    font-size: 1rem;
    font-weight: 500;
    background-color: #3498db;
    border: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    color: white;
    text-decoration: none;
    text-align: center;
}

    .btn-link:hover[b-x5n0f5hjnc] {
        background-color: #2980b9;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
    }

    .btn-link.secondary[b-x5n0f5hjnc] {
        background-color: #f8f9fa;
        color: #576574;
        border: 1px solid #dfe6e9;
    }

        .btn-link.secondary:hover[b-x5n0f5hjnc] {
            background-color: #e9ecef;
            box-shadow: none;
        }

@media (max-width: 768px) {
    .login-container[b-x5n0f5hjnc] {
        padding: 20px;
        margin: 20px auto;
    }

    .login-header[b-x5n0f5hjnc] {
        font-size: 1.5rem;
    }
}
/* /Components/Account/Pages/ForgotPassword.razor.rz.scp.css */
/* Login/Register Container (matches existing) */
.login-container[b-dyyn5ja6z8] {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    max-width: 450px;
    margin: 40px auto;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
}

/* Header Styles (matches login) */
.login-header[b-dyyn5ja6z8] {
    color: #2c3e50;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 5px;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 2px solid #f1f3f5;
    margin-top: 0;
}

.login-subheader[b-dyyn5ja6z8] {
    color: #576574;
    text-align: center;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

/* Form Elements (identical to login) */
.login-form .form-floating[b-dyyn5ja6z8] {
    margin-bottom: 1.8rem;
    position: relative;
}

.login-form .form-control[b-dyyn5ja6z8] {
    height: 52px;
    padding: 1rem 1.2rem;
    border: 1px solid #dfe6e9;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
}

    .login-form .form-control:focus[b-dyyn5ja6z8] {
        border-color: #3498db;
        box-shadow: 0 0 0 0.25rem rgba(52, 152, 219, 0.15);
        background-color: white;
    }

.login-form label[b-dyyn5ja6z8] {
    color: #576574;
    font-weight: 500;
    padding: 0.5rem 1.2rem;
    transition: all 0.3s ease;
}

/* Validation (matches login) */
.validation-message[b-dyyn5ja6z8] {
    color: #e74c3c;
    font-size: 0.9rem;
    margin-top: 5px;
}

.validation-summary[b-dyyn5ja6z8] {
    background-color: #f8d7da;
    border-left: 4px solid #e74c3c;
    padding: 10px 15px;
    margin-bottom: 20px;
    border-radius: 0 4px 4px 0;
}

    .validation-summary:empty[b-dyyn5ja6z8] {
        display: none;
    }

/* Button (identical to login) */
.login-form .btn-primary[b-dyyn5ja6z8] {
    width: 100%;
    padding: 14px;
    font-size: 1.1rem;
    font-weight: 500;
    background-color: #3498db;
    border: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(52, 152, 219, 0.2);
    color: white;
    cursor: pointer;
}

    .login-form .btn-primary:hover[b-dyyn5ja6z8] {
        background-color: #2980b9;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
    }

    .login-form .btn-primary:active[b-dyyn5ja6z8] {
        transform: translateY(0);
    }

/* Password Strength Meter (new for register) */
.password-strength[b-dyyn5ja6z8] {
    height: 4px;
    background: #e9ecef;
    margin: 8px 0 20px;
    border-radius: 2px;
    overflow: hidden;
}

.password-strength-bar[b-dyyn5ja6z8] {
    height: 100%;
    width: 0%;
    transition: width 0.3s ease, background 0.3s ease;
}

.password-strength.weak .password-strength-bar[b-dyyn5ja6z8] {
    width: 30%;
    background: #e74c3c;
}

.password-strength.medium .password-strength-bar[b-dyyn5ja6z8] {
    width: 60%;
    background: #f39c12;
}

.password-strength.strong .password-strength-bar[b-dyyn5ja6z8] {
    width: 100%;
    background: #2ecc71;
}

/* Responsive (matches login) */
@media (max-width: 768px) {
    .login-container[b-dyyn5ja6z8] {
        padding: 20px;
        margin: 20px auto;
    }

    .login-header[b-dyyn5ja6z8] {
        font-size: 1.5rem;
    }

    .login-form .form-control[b-dyyn5ja6z8] {
        height: 45px;
    }
}
/* /Components/Account/Pages/ForgotPasswordConfirmation.razor.rz.scp.css */
.login-container[b-z3rj4b89io] {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    max-width: 450px;
    margin: 40px auto;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    text-align: center;
}

.login-header[b-z3rj4b89io] {
    color: #2c3e50;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 5px;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 2px solid #f1f3f5;
    margin-top: 0;
}

.login-subheader[b-z3rj4b89io] {
    color: #576574;
    text-align: center;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.confirmation-icon[b-z3rj4b89io] {
    font-size: 3rem;
    margin-bottom: 15px;
}

.redirect-note[b-z3rj4b89io] {
    color: #7f8c8d;
    font-size: 0.9rem;
    margin-top: 20px;
}

.spinner[b-z3rj4b89io] {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #e9ecef;
    border-top-color: #3498db;
    border-radius: 50%;
    animation: spin-b-z3rj4b89io 1s linear infinite;
    vertical-align: middle;
    margin-right: 8px;
}

@keyframes spin-b-z3rj4b89io {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 768px) {
    .login-container[b-z3rj4b89io] {
        padding: 20px;
        margin: 20px auto;
    }

    .login-header[b-z3rj4b89io] {
        font-size: 1.5rem;
    }
}
/* /Components/Account/Pages/Login.razor.rz.scp.css */
/* ==========================================
   LOGIN CONTAINER - SPLIT SCREEN LAYOUT
   ========================================== */

.login-container[b-h1d0lo7de0] {
    display: flex;
    height:730px;
    background: #f8f9fa;
    max-width: 1400px;
    margin: 0 auto;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
    overflow: hidden; /* Add this to clip children */
}

/* ==========================================
   IMAGE SECTION - LEFT SIDE
   ========================================== */

.login-image-section[b-h1d0lo7de0] {
    flex: 1;

    background-image: url('/images/TEMIS_Login_Photo.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: 100vh;
    max-height: 100vh; /* Constrain to viewport height */
    overflow: hidden; /* Clip any overflow */
}

@supports (background-image: url('/images/TEMIS_Login_Photo.webp')) {
    .login-image-section[b-h1d0lo7de0] {
        background-image: url('/images/TEMIS_Login_Photo.webp');
    }
}

.image-overlay[b-h1d0lo7de0] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to bottom, rgba(42, 88, 133, 0.98), rgba(42, 88, 133, 0.4) 80%, transparent);
    padding: 3rem 2rem;
    color: white;
}
    .image-overlay h1[b-h1d0lo7de0] {
        font-size: 2.5rem;
        font-weight: 700;
        margin: 0 0 0.5rem 0;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }

    .image-overlay p[b-h1d0lo7de0] {
        font-size: 1.25rem;
        margin: 0;
        opacity: 0.95;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    }

/* ==========================================
   LOGIN PANEL - RIGHT SIDE
   ========================================== */

.login-panel[b-h1d0lo7de0] {
    flex: 0 0 480px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Changed from center */
    padding: 3rem 2.5rem;
    background-color: #ffffff;
    overflow-y: auto; /* Make it scrollable */
    box-shadow: none;
    border-radius: 0;
    animation: none;
}

@keyframes fadeInUp-b-h1d0lo7de0 {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================
   LOGO SECTION
   ========================================== */

.login-logo[b-h1d0lo7de0] {
    text-align: center;
    margin-bottom: 1rem;
}

    .login-logo img[b-h1d0lo7de0] {
        max-width: 80px;
        height: auto;
        opacity: 0.6;
    }

/* ==========================================
   HEADER SECTION
   ========================================== */

.login-header[b-h1d0lo7de0] {
    text-align: center;
    margin-bottom: 2rem;
}

    .login-header h2[b-h1d0lo7de0] {
        color: #2a5885;
        font-size: 1.75rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
        margin-top: 0;
    }

    .login-header p[b-h1d0lo7de0] {
        color: #6c757d;
        font-size: 0.95rem;
        margin: 0;
    }

/* ==========================================
   STATUS MESSAGES
   ========================================== */

.status-message[b-h1d0lo7de0] {
    padding: 12px 16px;
    margin-bottom: 1.5rem;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.95rem;
}

    .status-message:empty[b-h1d0lo7de0] {
        display: none;
    }

    .status-message.success[b-h1d0lo7de0] {
        background-color: #d4edda;
        color: #155724;
        border-left: 4px solid #28a745;
    }

    .status-message.error[b-h1d0lo7de0] {
        background-color: #f8d7da;
        color: #721c24;
        border-left: 4px solid #e74c3c;
    }

    .status-message.info[b-h1d0lo7de0] {
        background-color: #d1ecf1;
        color: #0c5460;
        border-left: 4px solid #17a2b8;
    }

/* ==========================================
   FORM STYLES
   ========================================== */

.login-form .form-group[b-h1d0lo7de0] {
    margin-bottom: 1.5rem;
}

.login-form label[b-h1d0lo7de0] {
    font-weight: 500;
    color: #495057;
    margin-bottom: 0.5rem;
    display: block;
    font-size: 0.95rem;
}

.login-form .form-control[b-h1d0lo7de0] {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1.5px solid #ced4da;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.2s ease-in-out;
    background-color: #f8f9fa;
}

    .login-form .form-control:focus[b-h1d0lo7de0] {
        border-color: #3498db;
        box-shadow: 0 0 0 4px rgba(52, 152, 219, 0.1);
        background-color: #fff;
        outline: none;
    }

    .login-form .form-control[b-h1d0lo7de0]::placeholder {
        color: #adb5bd;
    }

/* ==========================================
   REMEMBER ME CHECKBOX
   ========================================== */

.login-remember[b-h1d0lo7de0] {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 0.5rem 0;
}

    .login-remember input[type="checkbox"][b-h1d0lo7de0] {
        width: 18px;
        height: 18px;
        margin-right: 0.75rem;
        cursor: pointer;
        border: 2px solid #adb5bd;
        border-radius: 4px;
    }

        .login-remember input[type="checkbox"]:checked[b-h1d0lo7de0] {
            background-color: #3498db;
            border-color: #3498db;
        }

    .login-remember label[b-h1d0lo7de0] {
        margin: 0;
        cursor: pointer;
        font-weight: normal;
        padding-left: 5px;
        font-size: 0.95rem;
    }

/* ==========================================
   SUBMIT BUTTON
   ========================================== */

.login-actions[b-h1d0lo7de0] {
    margin-bottom: 1rem;
}

.login-form .btn-primary[b-h1d0lo7de0] {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 1.05rem;
    font-weight: 500;
    background-color: #3498db;
    border: none;
    border-radius: 8px;
    color: white;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    position: relative;
}

    .login-form .btn-primary:hover:not(:disabled)[b-h1d0lo7de0] {
        background-color: #2980b9;
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
    }

    .login-form .btn-primary:active:not(:disabled)[b-h1d0lo7de0] {
        transform: translateY(0);
    }

    .login-form .btn-primary:disabled[b-h1d0lo7de0] {
        opacity: 0.7;
        cursor: not-allowed;
    }

    .login-form .btn-primary .invisible[b-h1d0lo7de0] {
        visibility: hidden;
    }

/* ==========================================
   BUTTON LOADING STATE
   ========================================== */

.button-spinner[b-h1d0lo7de0] {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.spinner-icon[b-h1d0lo7de0] {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin-b-h1d0lo7de0 0.8s linear infinite;
}

@keyframes spin-b-h1d0lo7de0 {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* ==========================================
   VALIDATION MESSAGES
   ========================================== */

.validation-message[b-h1d0lo7de0] {
    color: #e74c3c;
    font-size: 0.875rem;
    margin-top: 0.375rem;
    display: block;
}

.validation-summary[b-h1d0lo7de0] {
    background-color: #f8d7da;
    border-left: 4px solid #e74c3c;
    padding: 12px 16px;
    margin-bottom: 1.5rem;
    border-radius: 0 6px 6px 0;
    font-size: 0.9rem;
}

    .validation-summary:empty[b-h1d0lo7de0] {
        display: none;
    }

/* ==========================================
   ERROR/SUCCESS TEXT
   ========================================== */

.text-error[b-h1d0lo7de0] {
    color: #e74c3c;
    font-size: 0.9rem;
    margin-top: 0.75rem;
}

.text-success[b-h1d0lo7de0] {
    color: #28a745;
    font-size: 0.9rem;
    margin-top: 0.75rem;
}

/* ==========================================
   LINKS SECTION
   ========================================== */

.login-links[b-h1d0lo7de0] {
    text-align: center;
    margin-top: 1.5rem;
}

    .login-links a[b-h1d0lo7de0] {
        color: #3498db;
        text-decoration: none;
        font-size: 0.9rem;
        transition: color 0.2s ease;
    }

        .login-links a:hover[b-h1d0lo7de0] {
            color: #2980b9;
            text-decoration: underline;
        }

/* ==========================================
   FOOTER SECTION
   ========================================== */

.login-footer[b-h1d0lo7de0] {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e9ecef;
    color: #6c757d;
    font-size: 0.875rem;
}

    .login-footer p[b-h1d0lo7de0] {
        margin: 0.25rem 0;
    }

.release-notes-toggle[b-h1d0lo7de0] {
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: transparent;
    border: 1px solid #3498db;
    color: #3498db;
    border-radius: 6px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

    .release-notes-toggle:hover[b-h1d0lo7de0] {
        background-color: #3498db;
        color: white;
    }

/* ==========================================
   HIDDEN RELEASE NOTES
   ========================================== */

.release-notes-hidden[b-h1d0lo7de0] {
    display: none;
    margin-top: 2rem;
    padding-top: 2rem;
    animation: fadeIn-b-h1d0lo7de0 0.3s ease-in;
}

@keyframes fadeIn-b-h1d0lo7de0 {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Preserve release notes styles for potential future use */
.release-notes[b-h1d0lo7de0] {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    max-width: 750px;
    margin: 20px auto;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 30px;
    position: relative;
}

.release-notes-close[b-h1d0lo7de0] {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: 1px solid #e0e0e0;
    color: #6c757d;
    padding: 0.375rem 0.75rem;
    border-radius: 6px;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

    .release-notes-close:hover[b-h1d0lo7de0] {
        background-color: #f8f9fa;
        border-color: #adb5bd;
        color: #495057;
    }

.release-notes .version-header[b-h1d0lo7de0] {
    color: #2c3e50;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 5px;
    border-bottom: 2px solid #f1f3f5;
    padding-bottom: 10px;
}

.release-notes .version-date[b-h1d0lo7de0] {
    color: #7f8c8d;
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: block;
    font-weight: 500;
}

.release-notes .feature-list[b-h1d0lo7de0] {
    margin-left: 0;
    padding-left: 24px;
}

.release-notes .feature-item[b-h1d0lo7de0] {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    line-height: 1.6;
}

    .release-notes .feature-item[b-h1d0lo7de0]::before {
        content: "";
        position: absolute;
        left: 0;
        top: 2px;
        width: 20px;
        height: 20px;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
    }

.feature-item.bug[b-h1d0lo7de0]::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23e74c3c'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-2h2v2zm0-4h-2V7h2v6z'/%3E%3C/svg%3E");
}

.feature-item.task[b-h1d0lo7de0]::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%233498db'%3E%3Cpath d='M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z'/%3E%3C/svg%3E");
}

.feature-item.improvement[b-h1d0lo7de0]::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%232ecc71'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z'/%3E%3C/svg%3E");
}

.feature-item.update[b-h1d0lo7de0]::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23f39c12'%3E%3Cpath d='M21 10.12h-6.78l2.74-2.82c-2.73-2.7-7.15-2.8-9.88-.1-2.73 2.71-2.73 7.08 0 9.79 2.73 2.71 7.15 2.71 9.88 0C18.32 15.65 19 14.08 19 12.1h2c0 1.98-.88 4.55-2.64 6.29-3.51 3.48-9.21 3.48-12.72 0-3.5-3.47-3.53-9.11-.02-12.58 3.51-3.47 9.14-3.47 12.65 0L21 3v7.12z'/%3E%3C/svg%3E");
}

.release-notes .version-divider[b-h1d0lo7de0] {
    border: none;
    height: 1px;
    background-color: #ecf0f1;
    margin: 25px 0;
}

.release-notes .note[b-h1d0lo7de0] {
    background-color: #f8f9fa;
    border-left: 3px solid #3498db;
    padding: 12px 15px;
    margin: 15px 0;
    border-radius: 0 4px 4px 0;
    font-size: 0.95rem;
    color: #576574;
}

.release-notes .version-container:first-child[b-h1d0lo7de0] {
    animation: highlight-version-b-h1d0lo7de0 2s ease-out;
}

@keyframes highlight-version-b-h1d0lo7de0 {
    0% {
        background-color: rgba(52, 152, 219, 0.1);
    }

    100% {
        background-color: transparent;
    }
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

@media (max-width: 968px) {
    .login-container[b-h1d0lo7de0] {
        flex-direction: column;
    }

    .login-image-section[b-h1d0lo7de0] {
        min-height: 35vh;
        flex: none;
    }

    .image-overlay[b-h1d0lo7de0] {
        padding: 2rem 1.5rem;
    }

        .image-overlay h1[b-h1d0lo7de0] {
            font-size: 1.75rem;
        }

        .image-overlay p[b-h1d0lo7de0] {
            font-size: 1rem;
        }

    .login-panel[b-h1d0lo7de0] {
        flex: 1;
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .login-image-section[b-h1d0lo7de0] {
        min-height: 30vh;
    }

    .image-overlay h1[b-h1d0lo7de0] {
        font-size: 1.5rem;
    }

    .image-overlay p[b-h1d0lo7de0] {
        font-size: 0.95rem;
    }

    .login-panel[b-h1d0lo7de0] {
        padding: 2rem 1.25rem;
    }
}
/* /Components/Account/Pages/Register.razor.rz.scp.css */
/* Login/Register Container (matches existing) */
.login-container[b-duifp1fo5w] {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    max-width: 450px;
    margin: 40px auto;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
}

/* Header Styles (matches login) */
.login-header[b-duifp1fo5w] {
    color: #2c3e50;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 5px;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 2px solid #f1f3f5;
    margin-top: 0;
}

.login-subheader[b-duifp1fo5w] {
    color: #576574;
    text-align: center;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

/* Form Elements (identical to login) */
.login-form .form-floating[b-duifp1fo5w] {
    margin-bottom: 1.8rem;
    position: relative;
}

.login-form .form-control[b-duifp1fo5w] {
    height: 52px;
    padding: 1rem 1.2rem;
    border: 1px solid #dfe6e9;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
}

    .login-form .form-control:focus[b-duifp1fo5w] {
        border-color: #3498db;
        box-shadow: 0 0 0 0.25rem rgba(52, 152, 219, 0.15);
        background-color: white;
    }

.login-form label[b-duifp1fo5w] {
    color: #576574;
    font-weight: 500;
    padding: 0.5rem 1.2rem;
    transition: all 0.3s ease;
}

/* Validation (matches login) */
.validation-message[b-duifp1fo5w] {
    color: #e74c3c;
    font-size: 0.9rem;
    margin-top: 5px;
}

.validation-summary[b-duifp1fo5w] {
    background-color: #f8d7da;
    border-left: 4px solid #e74c3c;
    padding: 10px 15px;
    margin-bottom: 20px;
    border-radius: 0 4px 4px 0;
}

    .validation-summary:empty[b-duifp1fo5w] {
        display: none;
    }

/* Button (identical to login) */
.login-form .btn-primary[b-duifp1fo5w] {
    width: 100%;
    padding: 14px;
    font-size: 1.1rem;
    font-weight: 500;
    background-color: #3498db;
    border: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(52, 152, 219, 0.2);
    color: white;
    cursor: pointer;
}

    .login-form .btn-primary:hover[b-duifp1fo5w] {
        background-color: #2980b9;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
    }

    .login-form .btn-primary:active[b-duifp1fo5w] {
        transform: translateY(0);
    }

/* Password Strength Meter (new for register) */
.password-strength[b-duifp1fo5w] {
    height: 4px;
    background: #e9ecef;
    margin: 8px 0 20px;
    border-radius: 2px;
    overflow: hidden;
}

.password-strength-bar[b-duifp1fo5w] {
    height: 100%;
    width: 0%;
    transition: width 0.3s ease, background 0.3s ease;
}

.password-strength.weak .password-strength-bar[b-duifp1fo5w] {
    width: 30%;
    background: #e74c3c;
}

.password-strength.medium .password-strength-bar[b-duifp1fo5w] {
    width: 60%;
    background: #f39c12;
}

.password-strength.strong .password-strength-bar[b-duifp1fo5w] {
    width: 100%;
    background: #2ecc71;
}

/* Responsive (matches login) */
@media (max-width: 768px) {
    .login-container[b-duifp1fo5w] {
        padding: 20px;
        margin: 20px auto;
    }

    .login-header[b-duifp1fo5w] {
        font-size: 1.5rem;
    }

    .login-form .form-control[b-duifp1fo5w] {
        height: 45px;
    }
}
/* /Components/Account/Pages/RegisterConfirmation.razor.rz.scp.css */
/* Login/Register Container (matches existing) */
.login-container[b-07re9s5yor] {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    max-width: 450px;
    margin: 40px auto;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
}

/* Header Styles (matches login) */
.login-header[b-07re9s5yor] {
    color: #2c3e50;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 5px;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 2px solid #f1f3f5;
    margin-top: 0;
}

.login-subheader[b-07re9s5yor] {
    color: #576574;
    text-align: center;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

/* Form Elements (identical to login) */
.login-form .form-floating[b-07re9s5yor] {
    margin-bottom: 1.8rem;
    position: relative;
}

.login-form .form-control[b-07re9s5yor] {
    height: 52px;
    padding: 1rem 1.2rem;
    border: 1px solid #dfe6e9;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
}

    .login-form .form-control:focus[b-07re9s5yor] {
        border-color: #3498db;
        box-shadow: 0 0 0 0.25rem rgba(52, 152, 219, 0.15);
        background-color: white;
    }

.login-form label[b-07re9s5yor] {
    color: #576574;
    font-weight: 500;
    padding: 0.5rem 1.2rem;
    transition: all 0.3s ease;
}

/* Validation (matches login) */
.validation-message[b-07re9s5yor] {
    color: #e74c3c;
    font-size: 0.9rem;
    margin-top: 5px;
}

.validation-summary[b-07re9s5yor] {
    background-color: #f8d7da;
    border-left: 4px solid #e74c3c;
    padding: 10px 15px;
    margin-bottom: 20px;
    border-radius: 0 4px 4px 0;
}

    .validation-summary:empty[b-07re9s5yor] {
        display: none;
    }

/* Button (identical to login) */
.login-form .btn-primary[b-07re9s5yor] {
    width: 100%;
    padding: 14px;
    font-size: 1.1rem;
    font-weight: 500;
    background-color: #3498db;
    border: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(52, 152, 219, 0.2);
    color: white;
    cursor: pointer;
}

    .login-form .btn-primary:hover[b-07re9s5yor] {
        background-color: #2980b9;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
    }

    .login-form .btn-primary:active[b-07re9s5yor] {
        transform: translateY(0);
    }

/* Password Strength Meter (new for register) */
.password-strength[b-07re9s5yor] {
    height: 4px;
    background: #e9ecef;
    margin: 8px 0 20px;
    border-radius: 2px;
    overflow: hidden;
}

.password-strength-bar[b-07re9s5yor] {
    height: 100%;
    width: 0%;
    transition: width 0.3s ease, background 0.3s ease;
}

.password-strength.weak .password-strength-bar[b-07re9s5yor] {
    width: 30%;
    background: #e74c3c;
}

.password-strength.medium .password-strength-bar[b-07re9s5yor] {
    width: 60%;
    background: #f39c12;
}

.password-strength.strong .password-strength-bar[b-07re9s5yor] {
    width: 100%;
    background: #2ecc71;
}

/* Responsive (matches login) */
@media (max-width: 768px) {
    .login-container[b-07re9s5yor] {
        padding: 20px;
        margin: 20px auto;
    }

    .login-header[b-07re9s5yor] {
        font-size: 1.5rem;
    }

    .login-form .form-control[b-07re9s5yor] {
        height: 45px;
    }
}
/* /Components/Account/Pages/ResendEmailConfirmation.razor.rz.scp.css */
.login-container[b-zoqognora7] {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    max-width: 450px;
    margin: 40px auto;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
}

.login-header[b-zoqognora7] {
    color: #2c3e50;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 5px;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 2px solid #f1f3f5;
    margin-top: 0;
}

.login-subheader[b-zoqognora7] {
    color: #576574;
    text-align: center;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.login-form .form-floating[b-zoqognora7] {
    margin-bottom: 1.8rem;
    position: relative;
}

.login-form .form-control[b-zoqognora7] {
    height: 52px;
    padding: 1rem 1.2rem;
    border: 1px solid #dfe6e9;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
}

    .login-form .form-control:focus[b-zoqognora7] {
        border-color: #3498db;
        box-shadow: 0 0 0 0.25rem rgba(52, 152, 219, 0.15);
        background-color: white;
    }

.login-form label[b-zoqognora7] {
    color: #576574;
    font-weight: 500;
    padding: 0.5rem 1.2rem;
    transition: all 0.3s ease;
}

.validation-message[b-zoqognora7] {
    color: #e74c3c;
    font-size: 0.9rem;
    margin-top: 5px;
}

.btn-primary[b-zoqognora7] {
    width: 100%;
    padding: 14px;
    font-size: 1.1rem;
    font-weight: 500;
    background-color: #3498db;
    border: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(52, 152, 219, 0.2);
    color: white;
    cursor: pointer;
}

    .btn-primary:hover[b-zoqognora7] {
        background-color: #2980b9;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
    }

    .btn-primary:active[b-zoqognora7] {
        transform: translateY(0);
    }

@media (max-width: 768px) {
    .login-container[b-zoqognora7] {
        padding: 20px;
        margin: 20px auto;
    }

    .login-header[b-zoqognora7] {
        font-size: 1.5rem;
    }

    .login-form .form-control[b-zoqognora7] {
        height: 45px;
    }
}
/* /Components/Account/Pages/ResetPassword.razor.rz.scp.css */
/* Login/Register Container (matches existing) */
.login-container[b-igtw68m2r3] {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    max-width: 450px;
    margin: 40px auto;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
}

/* Header Styles (matches login) */
.login-header[b-igtw68m2r3] {
    color: #2c3e50;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 5px;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 2px solid #f1f3f5;
    margin-top: 0;
}

.login-subheader[b-igtw68m2r3] {
    color: #576574;
    text-align: center;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

/* Form Elements (identical to login) */
.login-form .form-floating[b-igtw68m2r3] {
    margin-bottom: 1.8rem;
    position: relative;
}

.login-form .form-control[b-igtw68m2r3] {
    height: 52px;
    padding: 1rem 1.2rem;
    border: 1px solid #dfe6e9;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
}

    .login-form .form-control:focus[b-igtw68m2r3] {
        border-color: #3498db;
        box-shadow: 0 0 0 0.25rem rgba(52, 152, 219, 0.15);
        background-color: white;
    }

.login-form label[b-igtw68m2r3] {
    color: #576574;
    font-weight: 500;
    padding: 0.5rem 1.2rem;
    transition: all 0.3s ease;
}

/* Validation (matches login) */
.validation-message[b-igtw68m2r3] {
    color: #e74c3c;
    font-size: 0.9rem;
    margin-top: 5px;
}

.validation-summary[b-igtw68m2r3] {
    background-color: #f8d7da;
    border-left: 4px solid #e74c3c;
    padding: 10px 15px;
    margin-bottom: 20px;
    border-radius: 0 4px 4px 0;
}

    .validation-summary:empty[b-igtw68m2r3] {
        display: none;
    }

/* Button (identical to login) */
.login-form .btn-primary[b-igtw68m2r3] {
    width: 100%;
    padding: 14px;
    font-size: 1.1rem;
    font-weight: 500;
    background-color: #3498db;
    border: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(52, 152, 219, 0.2);
    color: white;
    cursor: pointer;
}

    .login-form .btn-primary:hover[b-igtw68m2r3] {
        background-color: #2980b9;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
    }

    .login-form .btn-primary:active[b-igtw68m2r3] {
        transform: translateY(0);
    }

/* Password Strength Meter (new for register) */
.password-strength[b-igtw68m2r3] {
    height: 4px;
    background: #e9ecef;
    margin: 8px 0 20px;
    border-radius: 2px;
    overflow: hidden;
}

.password-strength-bar[b-igtw68m2r3] {
    height: 100%;
    width: 0%;
    transition: width 0.3s ease, background 0.3s ease;
}

.password-strength.weak .password-strength-bar[b-igtw68m2r3] {
    width: 30%;
    background: #e74c3c;
}

.password-strength.medium .password-strength-bar[b-igtw68m2r3] {
    width: 60%;
    background: #f39c12;
}

.password-strength.strong .password-strength-bar[b-igtw68m2r3] {
    width: 100%;
    background: #2ecc71;
}

/* Responsive (matches login) */
@media (max-width: 768px) {
    .login-container[b-igtw68m2r3] {
        padding: 20px;
        margin: 20px auto;
    }

    .login-header[b-igtw68m2r3] {
        font-size: 1.5rem;
    }

    .login-form .form-control[b-igtw68m2r3] {
        height: 45px;
    }
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
/* ==========================================
   MAIN LAYOUT
   Content area shifts via margin-left to sit
   beside NavMenu's fixed sidebar (230px).
   When body has .sidebar-collapsed, margin → 0.
   ========================================== */

.page[b-iem09lmttg] {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: #f4f6f9;
}

main[b-iem09lmttg] {
    flex: 1;
    margin-left: 230px;
    transition: margin-left 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 100vh;
}

/* When JS adds .sidebar-collapsed to <body>, content fills the screen */
:global(body.sidebar-collapsed) main[b-iem09lmttg] {
    margin-left: 0;
}

/* ===== INFO BAR ===== */
.info-bar[b-iem09lmttg] {
    background: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
    height: 40px;
    display: flex;
    align-items: center;
    padding: 0 24px;
    justify-content: space-between;
    font-size: 0.82rem;
    position: sticky;
    top: 0;
    z-index: 50;
}

.info-bar-left[b-iem09lmttg] {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0; /* allows truncation */
}

.info-page-title[b-iem09lmttg] {
    color: #374151;
    font-weight: 600;
    white-space: nowrap;
}

.info-sep[b-iem09lmttg] {
    color: #d1d5db;
}

.info-context[b-iem09lmttg] {
    color: #6b7280;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.info-bar-right[b-iem09lmttg] {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #9ca3af;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.info-stat[b-iem09lmttg] {
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.info-stat svg[b-iem09lmttg] {
    opacity: 0.5;
}

.info-online-dot[b-iem09lmttg] {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22c55e;
    flex-shrink: 0;
}

/* Mobile: hide right-side stats, just show context */
@media (max-width: 768px) {
    .info-bar[b-iem09lmttg] {
        padding: 0 16px 0 56px; /* left padding clears the hamburger button */
    }

    .info-bar-right[b-iem09lmttg] {
        display: none;
    }

    .info-sep[b-iem09lmttg] {
        display: none;
    }

    .info-page-title[b-iem09lmttg] {
        font-size: 0.85rem;
    }

    .info-context[b-iem09lmttg] {
        display: none;
    }
}

.content[b-iem09lmttg] {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
    main[b-iem09lmttg] {
        margin-left: 0; /* Sidebar overlays on mobile */
    }
}

/* ===== RECONNECTION UI ===== */
#components-reconnect-modal[b-iem09lmttg] {
    display: none;
}

    #components-reconnect-modal.components-reconnect-show[b-iem09lmttg],
    #components-reconnect-modal.components-reconnect-rejecting[b-iem09lmttg] {
        display: block;
    }

.reconnect-overlay[b-iem09lmttg] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.reconnect-dialog[b-iem09lmttg] {
    background: white;
    padding: 30px 40px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

    .reconnect-dialog p[b-iem09lmttg] {
        margin-top: 15px;
        font-size: 1.1em;
        color: #333;
    }

/* ===== DEMO BANNER ===== */
.demo-banner-close[b-iem09lmttg] {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    padding: 0 4px;
    opacity: 0.8;
    line-height: 1;
}

    .demo-banner-close:hover[b-iem09lmttg] {
        opacity: 1;
    }

/* ===== BLAZOR ERROR UI ===== */
#blazor-error-ui[b-iem09lmttg] {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-iem09lmttg] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/NavMenu.razor.rz.scp.css */
/* ==========================================
   TEMIS NavMenu — Concept A: Text-Only Minimal
   Progressive collapse: full -> compact -> hidden
   ========================================== */

/* ===== SIDEBAR CONTAINER ===== */
.sidebar[b-zn6mxljoqx] {
    width: 230px;
    background: #1B2838;
    color: #b8c4d0;
    font-size: 13px;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.sidebar.collapsed[b-zn6mxljoqx] {
    transform: translateX(-230px);
}

/* ===== LOGO AREA ===== */
.sidebar-logo[b-zn6mxljoqx] {
    padding: 10px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
    min-height: 48px;
}

.logo-link[b-zn6mxljoqx] {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: white;
}

.logo-img[b-zn6mxljoqx] {
    height: 28px;
    width: auto;
    object-fit: contain;
}

.logo-text[b-zn6mxljoqx] {
    font-size: 23px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: white;
}

.collapse-btn[b-zn6mxljoqx] {
    width: 26px;
    height: 26px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: transparent;
    color: #5a6a7a;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s;
    flex-shrink: 0;
}

.collapse-btn:hover[b-zn6mxljoqx] {
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

/* ===== NAV CONTENT ===== */
.sidebar-nav[b-zn6mxljoqx] {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    padding: 4px 0;
}

    /* ── Subtle scrollbar ── */
    .sidebar-nav[b-zn6mxljoqx]::-webkit-scrollbar {
        width: 4px;
    }

    .sidebar-nav[b-zn6mxljoqx]::-webkit-scrollbar-track {
        background: transparent;
    }

    .sidebar-nav[b-zn6mxljoqx]::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 4px;
    }

        .sidebar-nav[b-zn6mxljoqx]::-webkit-scrollbar-thumb:hover {
            background: rgba(255, 255, 255, 0.2);
        }

/* Firefox */
.sidebar-nav[b-zn6mxljoqx] {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.1) transparent;
}

/* ===== SECTION HEADERS ===== */
.nav-section-label[b-zn6mxljoqx] {
    padding: 10px 18px 4px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #4a5a6a;
    font-weight: 600;
    flex-shrink: 0;
    cursor: default;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 26px;
    transition: all 0.15s;
}

/* Chevron — hidden in full mode */
.section-chevron[b-zn6mxljoqx] {
    display: none;
    opacity: 0.4;
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

/* ===== COMPACT MODE ===== */
.sidebar.compact-mode .nav-section-label[b-zn6mxljoqx] {
    cursor: pointer;
    padding: 8px 16px;
    border-radius: 4px;
    margin: 1px 8px;
    color: #5a6a7a;
}

.sidebar.compact-mode .nav-section-label:hover[b-zn6mxljoqx] {
    background: rgba(255, 255, 255, 0.04);
    color: #8a9ab0;
}

.sidebar.compact-mode .section-chevron[b-zn6mxljoqx] {
    display: block;
}

.sidebar.compact-mode .nav-section-label.open[b-zn6mxljoqx] {
    color: #8a9ab0;
}

.sidebar.compact-mode .nav-section-label.open .section-chevron[b-zn6mxljoqx] {
    transform: rotate(90deg);
    opacity: 0.7;
}

/* ===== SECTION ITEMS CONTAINER ===== */
.nav-section-items[b-zn6mxljoqx] {
    flex-shrink: 0;
    overflow: hidden;
    transition: max-height 0.25s ease, opacity 0.2s ease;
    display: flex;
    flex-direction: column;
}

.sidebar.compact-mode .nav-section-items[b-zn6mxljoqx] {
    max-height: 0;
    opacity: 0;
    pointer-events: none;
}

.sidebar.compact-mode .nav-section-items.open[b-zn6mxljoqx] {
    max-height: 300px;
    opacity: 1;
    pointer-events: auto;
}

/* ===== NAV ITEMS =====
   NavLink is a child component — Blazor CSS isolation won't
   scope to its rendered <a> tag without ::deep.
   Target from parent .nav-section-items which IS in our scope. */

/* Nav badges */
.nav-badge[b-zn6mxljoqx] {
    font-size: 7px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 1px 5px;
    border-radius: 3px;
    margin-left: 10px;
    margin-top: 2px;
    flex-shrink: 0;
    line-height: 1.4;
}

    .nav-badge.new[b-zn6mxljoqx] {
        background: #FBC900;
        color: #1B2838;
    }

    .nav-badge.upd[b-zn6mxljoqx] {
        background: #60a5fa;
        color: #1B2838;
    }

.nav-section-items[b-zn6mxljoqx]  a {
    display: flex;
    align-items: center;
    padding: 6px 18px;
    color: #8a9ab0;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.12s ease;
    position: relative;
    white-space: nowrap;
    flex-shrink: 0;
    min-height: 30px;
    font-size: 13px;
    border-left: 2px solid transparent;
    width: 100%;
}

.nav-section-items[b-zn6mxljoqx]  a:hover {
    color: #d0d8e0;
    background: rgba(255, 255, 255, 0.03);
    text-decoration: none;
}

.nav-section-items[b-zn6mxljoqx]  a.active {
    color: white;
    background: rgba(255, 255, 255, 0.06);
    border-left-color: #4fc3f7;
    text-decoration: none;
}

/* Standalone items (Help link — outside a section container) */
.sidebar-nav[b-zn6mxljoqx]  a.nav-item-standalone {
    display: flex;
    align-items: center;
    margin: 2px 8px;
    padding: 6px 12px;
    border-radius: 4px;
    border-left: none;
    font-size: 12px;
    color: #5a6a7a;
    text-decoration: none;
    width: auto;
}

.sidebar-nav[b-zn6mxljoqx]  a.nav-item-standalone:hover {
    color: #8a9ab0;
    background: rgba(255, 255, 255, 0.03);
    text-decoration: none;
}

.sidebar-nav[b-zn6mxljoqx]  a.nav-item-standalone.active {
    color: white;
    background: rgba(255, 255, 255, 0.06);
    border-left: none;
    text-decoration: none;
}

/* ===== DIVIDERS ===== */
.nav-divider[b-zn6mxljoqx] {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin: 6px 18px;
    flex-shrink: 0;
}

/* ===== FOOTER ===== */
.sidebar-footer[b-zn6mxljoqx] {
    padding: 10px 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    flex-shrink: 0;
}

.user-row[b-zn6mxljoqx] {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.user-avatar[b-zn6mxljoqx] {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4a6a8a, #3a5a7a);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    font-weight: 600;
    flex-shrink: 0;
}

.user-info[b-zn6mxljoqx] {
    overflow: hidden;
    min-width: 0;
}

.user-name[b-zn6mxljoqx] {
    font-size: 11px;
    color: #8a9ab0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-meta[b-zn6mxljoqx] {
    font-size: 10px;
    color: #4caf50;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 1px;
}

.online-dot[b-zn6mxljoqx] {
    width: 6px;
    height: 6px;
    background: #4caf50;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

.logout-form[b-zn6mxljoqx] {
    margin: 0;
}

.logout-btn[b-zn6mxljoqx] {
    width: 100%;
    padding: 6px 10px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: transparent;
    color: #5a6a7a;
    font-size: 11px;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.15s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.logout-btn:hover[b-zn6mxljoqx] {
    color: #c0c8d0;
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.03);
}

/* ===== EXPAND BUTTON (visible when collapsed) ===== */
.sidebar-expand-btn[b-zn6mxljoqx] {
    position: fixed;
    top: 1px;
    left: 3px;
    z-index: 200;
    width: 36px;
    height: 36px;
    border: none;
    background: transparent;
    color: #6b7280;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: color 0.15s;
}

    .sidebar-expand-btn:hover[b-zn6mxljoqx] {
        color: #1f2937;
    }

/* ===== MOBILE ===== */
@media (max-width: 768px) {
    .sidebar[b-zn6mxljoqx] {
        width: 260px;
        box-shadow: 4px 0 24px rgba(0, 0, 0, 0.3);
    }

    .sidebar.collapsed[b-zn6mxljoqx] {
        transform: translateX(-260px);
    }
}

/* Mobile backdrop — dims content when sidebar is open */
.sidebar-backdrop[b-zn6mxljoqx] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 99;
    cursor: pointer;
}

/* ===== ACCESSIBILITY ===== */
.nav-section-items[b-zn6mxljoqx]  a:focus-visible,
.sidebar-nav[b-zn6mxljoqx]  a.nav-item-standalone:focus-visible,
.collapse-btn:focus-visible[b-zn6mxljoqx],
.logout-btn:focus-visible[b-zn6mxljoqx],
.sidebar-expand-btn:focus-visible[b-zn6mxljoqx] {
    outline: 2px solid #4fc3f7;
    outline-offset: -2px;
}

.nav-section-label:focus-visible[b-zn6mxljoqx] {
    outline: 2px solid #4fc3f7;
    outline-offset: -2px;
    border-radius: 4px;
}
/* /Components/Pages/Disability.razor.rz.scp.css */
/* ============================================================================
   TEMIS Disability Assessment — Scoped CSS
   File: Disability.razor.css
   
   Design language aligned with ReportingHub.razor.css:
   - Teal accent (#00838f), consistent tokens
   - rh-style panel headers, search bars, table patterns
   - da- prefix for disability-specific selectors
   ============================================================================ */

/* ═══════════ Design Tokens ═══════════ */
.da-page[b-dh7ixirs70] {
    --da-teal: #00838f;
    --da-teal-light: #e0f2f3;
    --da-teal-bg: #f0fafa;
    --da-blue: #004fb9;
    --da-green: #06D6A0;
    --da-green-dark: #05a77d;
    --da-amber: #f59f00;
    --da-red: #e76f51;
    --da-text: #1a1a2e;
    --da-text-muted: #6c757d;
    --da-text-light: #adb5bd;
    --da-bg: #f4f7fa;
    --da-card: #ffffff;
    --da-border: #e9ecef;
    --da-border-light: #f1f3f5;
    --da-radius: 10px;
    --da-shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
    --da-shadow: 0 2px 8px rgba(0,0,0,0.06);
    background: #f4f6f9;
    min-height: 100vh;
}

/* ═══════════ HEADER ═══════════ */
.da-header[b-dh7ixirs70] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 1.25rem;
    padding: 1.5rem;
    background: #f8fafe;
    border: 1px solid var(--da-border);
    border-radius: var(--da-radius);
    border-top: 4px solid var(--da-teal);
}

.da-header-left[b-dh7ixirs70] { flex: 1; }

.da-header-right[b-dh7ixirs70] {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.da-page-title[b-dh7ixirs70] {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--da-text);
    margin-bottom: 0.4rem;
}

.da-page-title svg[b-dh7ixirs70] { color: var(--da-teal); }

.da-subtitle[b-dh7ixirs70] {
    font-size: 0.88rem;
    color: var(--da-text-muted);
    line-height: 1.6;
    max-width: 600px;
}

.da-filter-group label[b-dh7ixirs70],
.da-filter-label[b-dh7ixirs70] {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--da-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.da-select[b-dh7ixirs70] {
    padding: 7px 30px 7px 12px;
    border: 1px solid var(--da-border);
    border-radius: 8px;
    font-size: 0.85rem;
    font-family: inherit;
    color: var(--da-text);
    background: white;
    cursor: pointer;
    appearance: auto;
}

.da-school-select[b-dh7ixirs70] { min-width: 220px; }

.da-school-label[b-dh7ixirs70] {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--da-text);
    padding: 7px 0;
}

/* ═══════════ SUMMARY BAR ═══════════ */
.da-summary-bar[b-dh7ixirs70] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding: 0.85rem 1.25rem;
    background: var(--da-card);
    border: 1px solid var(--da-border);
    border-radius: var(--da-radius);
    box-shadow: var(--da-shadow-sm);
}

.da-kpi-row[b-dh7ixirs70] {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.da-kpi[b-dh7ixirs70] {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.da-kpi-label[b-dh7ixirs70] {
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--da-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.da-kpi-value[b-dh7ixirs70] {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--da-text);
}

.da-export-buttons[b-dh7ixirs70] {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-shrink: 0;
}

.da-export-btn[b-dh7ixirs70] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 16px;
    border: 1px solid;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    white-space: nowrap;
    transition: all 0.15s;
}

.da-export-btn:disabled[b-dh7ixirs70] { opacity: 0.5; cursor: not-allowed; }

.da-export-excel[b-dh7ixirs70] {
    background: #1d6f42;
    color: #fff;
    border-color: #1d6f42;
}

.da-export-excel:hover:not(:disabled)[b-dh7ixirs70] { background: #165a36; }
.da-export-excel svg[b-dh7ixirs70] { stroke: #fff; }

.da-export-national[b-dh7ixirs70] {
    background: #0F766E;
    color: #fff;
    border-color: #0F766E;
}

.da-export-national:hover:not(:disabled)[b-dh7ixirs70] { background: #0d6560; }
.da-export-national svg[b-dh7ixirs70] { stroke: #fff; }

.da-export-pdf[b-dh7ixirs70] {
    background: #3B5998;
    color: #fff;
    border-color: #3B5998;
}

.da-export-pdf:hover:not(:disabled)[b-dh7ixirs70] { background: #2d4373; }
.da-export-pdf svg[b-dh7ixirs70] { stroke: #fff; }

/* ── Info Bar Export Button ── */
.da-info-export-btn[b-dh7ixirs70] {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-left: 6px;
    padding: 5px 14px;
    border: none;
    border-radius: 6px;
    background: rgba(255,255,255,0.92);
    color: var(--da-teal);
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.15s;
    white-space: nowrap;
}

.da-info-export-btn:hover:not(:disabled)[b-dh7ixirs70] {
    background: #fff;
    box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}

.da-info-export-btn:disabled[b-dh7ixirs70] { opacity: 0.5; cursor: not-allowed; }
.da-info-export-btn svg[b-dh7ixirs70] { stroke: var(--da-teal); }

/* ═══════════ MAIN LAYOUT ═══════════ */
.da-layout[b-dh7ixirs70] {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 1.25rem;
    min-height: calc(100vh - 220px);
}

@media (max-width: 900px) {
    .da-layout[b-dh7ixirs70] {
        grid-template-columns: 1fr;
    }
}

/* ═══════════ LEFT PANEL: Student List ═══════════ */
.da-student-panel[b-dh7ixirs70] {
    background: var(--da-card);
    border: none;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: none;
    max-height: calc(100vh - 220px);
}

.da-panel-header[b-dh7ixirs70] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.85rem 1.25rem;
    border-bottom: 1px solid var(--da-border);
}

.da-panel-header h3[b-dh7ixirs70] {
    font-size: 0.92rem;
    font-weight: 600;
    color: #495057;
    margin: 0;
}

.da-student-count-badge[b-dh7ixirs70] {
    font-size: 0.72rem;
    font-weight: 700;
    background: var(--da-teal);
    color: #fff;
    padding: 2px 8px;
    border-radius: 10px;
    min-width: 20px;
    text-align: center;
}

/* ── Search Bar (matches rh-search-bar) ── */
.da-search-bar[b-dh7ixirs70] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0.65rem 1.25rem;
    border-bottom: 1px solid var(--da-border-light);
    background: #fcfcfd;
}

.da-search-bar svg[b-dh7ixirs70] { color: var(--da-text-light); flex-shrink: 0; }

.da-search-input[b-dh7ixirs70] {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-size: 0.85rem;
    font-family: inherit;
    color: var(--da-text);
}

.da-search-input[b-dh7ixirs70]::placeholder { color: var(--da-text-light); }

.da-search-clear[b-dh7ixirs70] {
    border: none;
    background: transparent;
    color: var(--da-text-light);
    font-size: 1rem;
    cursor: pointer;
    padding: 2px 6px;
    border-radius: 4px;
    transition: all 0.15s;
    line-height: 1;
}

.da-search-clear:hover[b-dh7ixirs70] { background: var(--da-border-light); color: var(--da-text-muted); }

/* ── Filter Pills ── */
.da-filter-bar[b-dh7ixirs70] {
    display: flex;
    gap: 4px;
    padding: 0.45rem 1.25rem;
    border-bottom: 1px solid var(--da-border-light);
    background: #fcfcfd;
}

.da-filter-pill[b-dh7ixirs70] {
    padding: 4px 10px;
    border: 1px solid var(--da-border);
    border-radius: 14px;
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--da-text-muted);
    cursor: pointer;
    font-family: inherit;
    transition: all 0.15s;
    background: white;
}

.da-filter-pill:hover[b-dh7ixirs70] {
    border-color: var(--da-teal);
    color: var(--da-teal);
}

.da-filter-pill.active[b-dh7ixirs70] {
    background: var(--da-teal-light);
    border-color: var(--da-teal);
    color: var(--da-teal);
    font-weight: 600;
}

/* ── Student Grid — scrollable ── */
.da-student-grid-scroll[b-dh7ixirs70] {
    flex: 1;
    overflow-y: auto;
    min-height: 0;
}

.da-student-table[b-dh7ixirs70] {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.82rem;
}

.da-student-table thead th[b-dh7ixirs70] {
    position: sticky;
    top: 0;
    z-index: 2;
    background: #f8f9fa;
    color: #495057;
    font-weight: 600;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    padding: 0.6rem 0.5rem;
    border-bottom: 2px solid var(--da-border);
    text-align: left;
    white-space: nowrap;
}

.da-student-table tbody td[b-dh7ixirs70] {
    padding: 0.5rem 0.5rem;
    border-bottom: 1px solid #f5f5f5;
    color: var(--da-text);
}

.col-name[b-dh7ixirs70] { min-width: 120px; font-weight: 500; }
.col-class[b-dh7ixirs70] { width: 60px; text-align: center; }
.col-gender[b-dh7ixirs70] { width: 40px; text-align: center; }
.col-status[b-dh7ixirs70] { width: 45px; text-align: center; }

/* Row states (matches rh-data-table patterns) */
.row-clickable[b-dh7ixirs70] { cursor: pointer; transition: background 0.15s; }
.row-clickable:hover[b-dh7ixirs70] { background: rgba(0, 131, 143, 0.04); }

.row-selected[b-dh7ixirs70] {
    background: rgba(0, 131, 143, 0.1) !important;
    border-left: 3px solid var(--da-teal);
}

.row-selected td:first-child[b-dh7ixirs70] { padding-left: calc(0.5rem - 3px); }

/* Status badges */
.da-badge[b-dh7ixirs70] {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    width: 22px;
    height: 22px;
    line-height: 22px;
    text-align: center;
    border-radius: 4px;
}

.da-badge-complete[b-dh7ixirs70] {
    background: rgba(6, 214, 160, 0.15);
    color: var(--da-green-dark);
}

.da-badge-empty[b-dh7ixirs70] {
    color: var(--da-text-light);
    background: transparent;
}

.row-selected .da-badge-complete[b-dh7ixirs70] {
    background: rgba(6, 214, 160, 0.25);
}

/* Panel Footer */
.da-panel-footer[b-dh7ixirs70] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.65rem 1.25rem;
    border-top: 1px solid var(--da-border);
    font-size: 0.78rem;
    color: var(--da-text-muted);
}

/* ═══════════ RIGHT PANEL: Form ═══════════ */
.da-form-panel[b-dh7ixirs70] {
    background: var(--da-card);
    border: 1px solid var(--da-border);
    border-radius: var(--da-radius);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: var(--da-shadow-sm);
    max-height: calc(100vh - 220px);
}

.da-empty-state[b-dh7ixirs70] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 4rem 2rem;
    color: var(--da-text-light);
    font-size: 0.88rem;
    text-align: center;
}

.da-empty-state svg[b-dh7ixirs70] { color: var(--da-text-light); opacity: 0.5; }

/* ═══════════ Student Info Bar ═══════════ */
.da-info-bar[b-dh7ixirs70] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: var(--da-teal);
    color: #fff;
}

.da-info-name[b-dh7ixirs70] {
    font-weight: 600;
    font-size: 1rem;
}

.da-info-meta[b-dh7ixirs70] {
    font-size: 0.82rem;
    opacity: 0.8;
}

.da-info-badge[b-dh7ixirs70] {
    margin-left: auto;
    font-size: 0.72rem;
    font-weight: 600;
    background: rgba(255,255,255,0.15);
    padding: 3px 10px;
    border-radius: 10px;
}

.da-info-badge-new[b-dh7ixirs70] {
    background: var(--da-amber);
    color: #1a1a2e;
}

/* ═══════════ TAB BAR (matches rh-tab-bar) ═══════════ */
.da-tab-bar[b-dh7ixirs70] {
    display: flex;
    gap: 3px;
    background: #e8eaed;
    padding: 4px;
    border-radius: 0;
    overflow-x: auto;
}

.da-tab-btn[b-dh7ixirs70] {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 9px 18px;
    border: none;
    background: transparent;
    border-radius: 6px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--da-text-muted);
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
    white-space: nowrap;
}

.da-tab-btn:hover[b-dh7ixirs70] { background: rgba(255,255,255,0.5); color: var(--da-text); }

.da-tab-btn.active[b-dh7ixirs70] {
    background: white;
    color: var(--da-text);
    font-weight: 600;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}

/* ═══════════ TAB CONTENT ═══════════ */
.da-tab-content[b-dh7ixirs70] {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 1.25rem;
    min-height: 0;
}

/* ═══════════ Form Sections ═══════════ */
.form-section h3[b-dh7ixirs70] {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--da-text);
    margin: 0 0 0.25rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--da-teal-light);
}

.section-intro[b-dh7ixirs70] {
    font-size: 0.85rem;
    color: var(--da-text-muted);
    margin: 0.4rem 0 1rem 0;
    line-height: 1.5;
}

.form-note[b-dh7ixirs70] {
    font-size: 0.8rem;
    color: var(--da-text-muted);
    font-style: italic;
    margin-top: 1rem;
    padding: 0.6rem 0.85rem;
    background: var(--da-teal-bg);
    border-left: 3px solid var(--da-teal);
    border-radius: 0 4px 4px 0;
}

/* ═══════════ Form Controls ═══════════ */
.form-row[b-dh7ixirs70] {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.form-group[b-dh7ixirs70] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.form-group.col-6[b-dh7ixirs70] { flex: 1; }
.form-group.full-width[b-dh7ixirs70] { width: 100%; margin-bottom: 0.5rem; }

.form-group label[b-dh7ixirs70] {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--da-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.form-group input[type="text"][b-dh7ixirs70],
.form-group input[type="date"][b-dh7ixirs70],
.form-group textarea[b-dh7ixirs70] {
    padding: 0.4rem 0.6rem;
    border: 1px solid var(--da-border);
    border-radius: 6px;
    font-size: 0.85rem;
    font-family: inherit;
    width: 100%;
    box-sizing: border-box;
    color: var(--da-text);
    background: #fff;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.form-group input:focus[b-dh7ixirs70],
.form-group textarea:focus[b-dh7ixirs70] {
    outline: none;
    border-color: var(--da-teal);
    box-shadow: 0 0 0 3px rgba(0, 131, 143, 0.1);
}

.checkbox-label[b-dh7ixirs70] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    cursor: pointer;
    padding: 0.35rem 0;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 500;
    color: var(--da-text);
}

.checkbox-label input[type="checkbox"][b-dh7ixirs70] {
    width: 16px;
    height: 16px;
    accent-color: var(--da-teal);
}

/* ═══════════ Audit Info ═══════════ */
.audit-info[b-dh7ixirs70] {
    margin-top: 1.5rem;
    padding: 0.85rem 1rem;
    background: #f8f9fa;
    border: 1px solid var(--da-border);
    border-radius: 8px;
}

.audit-info h4[b-dh7ixirs70] {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--da-text-muted);
    margin: 0 0 0.6rem 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.audit-value[b-dh7ixirs70] {
    font-size: 0.82rem;
    color: var(--da-text-muted);
}

/* ═══════════ Health Profile Checklist ═══════════ */
.health-checklist[b-dh7ixirs70] {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.health-check-item[b-dh7ixirs70] {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    padding: 0.45rem 0.65rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: background 0.12s ease;
}

.health-check-item:hover[b-dh7ixirs70] { background: var(--da-teal-bg); }

.health-check-item input[type="checkbox"][b-dh7ixirs70] {
    margin-top: 2px;
    width: 16px;
    height: 16px;
    accent-color: var(--da-teal);
    flex-shrink: 0;
}

.health-check-item span[b-dh7ixirs70] {
    color: var(--da-text);
    line-height: 1.4;
}

/* ═══════════ Rated Items (Sections 3, 4, 5) ═══════════ */
.rated-item[b-dh7ixirs70] {
    padding: 0.85rem 1rem;
    margin-bottom: 0.65rem;
    border: 1px solid var(--da-border);
    border-radius: 8px;
    background: #fff;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.rated-item:hover[b-dh7ixirs70] {
    border-color: rgba(0, 131, 143, 0.3);
    box-shadow: 0 1px 4px rgba(0,0,0,0.03);
}

.rated-item-header[b-dh7ixirs70] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.rated-item-label[b-dh7ixirs70] {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--da-text);
}

.info-btn[b-dh7ixirs70] {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1.5px solid var(--da-teal);
    background: #fff;
    color: var(--da-teal);
    font-size: 0.72rem;
    font-weight: 700;
    font-style: italic;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.15s ease;
}

.info-btn:hover[b-dh7ixirs70] {
    background: var(--da-teal);
    color: #fff;
}

.info-panel[b-dh7ixirs70] {
    background: var(--da-teal-bg);
    border: 1px solid rgba(0, 131, 143, 0.2);
    border-radius: 6px;
    padding: 0.6rem 0.85rem;
    margin-bottom: 0.5rem;
    font-size: 0.82rem;
    color: #374151;
    line-height: 1.55;
}

.info-panel p[b-dh7ixirs70] { margin: 0; }

/* ═══════════ Radio Groups ═══════════ */
.radio-group[b-dh7ixirs70] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-bottom: 0.4rem;
}

.radio-option[b-dh7ixirs70] {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.75rem;
    border: 1px solid var(--da-border);
    border-radius: 20px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.15s;
    background: #fff;
    color: var(--da-text-muted);
    font-weight: 500;
}

.radio-option:hover[b-dh7ixirs70] {
    border-color: var(--da-teal);
    color: var(--da-teal);
}

.radio-option.radio-selected[b-dh7ixirs70] {
    border-color: var(--da-teal);
    background: var(--da-teal);
    color: #fff;
    font-weight: 600;
}

.radio-option.radio-selected input[type="radio"][b-dh7ixirs70] {
    accent-color: #fff;
}

.radio-option input[type="radio"][b-dh7ixirs70] {
    accent-color: var(--da-teal);
    margin: 0;
    width: 14px;
    height: 14px;
}

/* ── Item Description Input ── */
.rated-item-desc input[b-dh7ixirs70] {
    width: 100%;
    padding: 0.35rem 0.6rem;
    border: 1px solid var(--da-border-light);
    border-radius: 6px;
    font-size: 0.82rem;
    color: var(--da-text-muted);
    box-sizing: border-box;
    transition: border-color 0.15s;
    background: #fcfcfd;
}

.rated-item-desc input:focus[b-dh7ixirs70] {
    outline: none;
    border-color: var(--da-teal);
    box-shadow: 0 0 0 3px rgba(0, 131, 143, 0.08);
    background: #fff;
}

.rated-item-desc input[b-dh7ixirs70]::placeholder { color: #ccc; }

/* ═══════════ SAVE BAR ═══════════ */
.da-save-bar[b-dh7ixirs70] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1.25rem;
    border-top: 1px solid var(--da-border);
    background: #f8f9fa;
}

.da-btn-save[b-dh7ixirs70] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 24px;
    border: none;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    color: #fff;
    font-family: inherit;
    transition: all 0.15s;
    min-width: 160px;
    justify-content: center;
}

.da-btn-save:hover:not(:disabled)[b-dh7ixirs70] { opacity: 0.85; }
.da-btn-save:disabled[b-dh7ixirs70] { opacity: 0.5; cursor: not-allowed; }

.da-btn-create[b-dh7ixirs70] { background: var(--da-teal); }
.da-btn-update[b-dh7ixirs70] { background: var(--da-green-dark); }

.da-save-msg[b-dh7ixirs70] {
    font-size: 0.85rem;
    font-weight: 600;
}

.da-msg-success[b-dh7ixirs70] { color: var(--da-green-dark); }
.da-msg-error[b-dh7ixirs70] { color: var(--da-red); }

/* ═══════════ Severity Colours (reporting/indicators) ═══════════ */
.severity-none[b-dh7ixirs70]   { color: var(--da-green-dark); }
.severity-some[b-dh7ixirs70]   { color: var(--da-amber); }
.severity-lots[b-dh7ixirs70]   { color: #e67e22; }
.severity-cannot[b-dh7ixirs70] { color: var(--da-red); }

/* ═══════════ Responsive ═══════════ */
@media (max-width: 768px) {
    .da-header[b-dh7ixirs70] { flex-direction: column; gap: 1rem; }
    .da-header-right[b-dh7ixirs70] { flex-direction: row; flex-wrap: wrap; }
    .da-summary-bar[b-dh7ixirs70] { flex-direction: column; align-items: flex-start; }
    .da-kpi-row[b-dh7ixirs70] { gap: 1rem; }
    .da-layout[b-dh7ixirs70] { grid-template-columns: 1fr; }
    .da-student-panel[b-dh7ixirs70] { max-height: 350px; }
    .da-form-panel[b-dh7ixirs70] { max-height: none; }
    .da-tab-bar[b-dh7ixirs70] { overflow-x: auto; }
    .da-tab-btn[b-dh7ixirs70] { padding: 8px 12px; font-size: 0.78rem; }
    .form-row[b-dh7ixirs70] { flex-direction: column; gap: 0.5rem; }
    .radio-group[b-dh7ixirs70] { flex-direction: column; }
    .da-info-bar[b-dh7ixirs70] { flex-wrap: wrap; }
}

/* ============================================================================
   Additional CSS for browse-first disability page flow
   ============================================================================ */

/* ── Panel Actions (New / Back buttons in header) ── */
.da-panel-actions[b-dh7ixirs70] {
    display: flex;
    gap: 6px;
}

.da-btn-new[b-dh7ixirs70] {
    padding: 5px 14px;
    border: none;
    border-radius: 6px;
    background: var(--da-teal);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.15s;
    white-space: nowrap;
}

    .da-btn-new:hover[b-dh7ixirs70] {
        opacity: 0.85;
    }

.da-btn-back[b-dh7ixirs70] {
    padding: 5px 14px;
    border: 1px solid var(--da-border);
    border-radius: 6px;
    background: #fff;
    color: var(--da-text-muted);
    font-size: 0.78rem;
    font-weight: 500;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.15s;
}

    .da-btn-back:hover[b-dh7ixirs70] {
        border-color: var(--da-teal);
        color: var(--da-teal);
    }

/* ── Browse list columns ── */
.col-school[b-dh7ixirs70] {
    width: 130px;
    max-width: 130px;
    font-size: 0.78rem;
    color: var(--da-text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.col-date[b-dh7ixirs70] {
    width: 85px;
    font-size: 0.75rem;
    color: var(--da-text-light);
    white-space: nowrap;
}

.da-verified-tick[b-dh7ixirs70] {
    display: inline-block;
    margin-left: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--da-teal);
    background: var(--da-teal-light);
    padding: 0 4px;
    border-radius: 3px;
}

/* ── New Assessment Mode ── */
.da-new-mode-content[b-dh7ixirs70] {
    padding: 1.25rem;
    flex: 1;
}

.da-new-instructions[b-dh7ixirs70] {
    font-size: 0.82rem;
    color: var(--da-text-muted);
    line-height: 1.5;
    margin: 0 0 1rem 0;
}

/* Search result styling inside TemisAutocomplete */
.da-search-result[b-dh7ixirs70] {
    padding: 2px 0;
}

.da-search-result-name[b-dh7ixirs70] {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--da-text);
    display: flex;
    align-items: center;
    gap: 6px;
}

.da-search-result-meta[b-dh7ixirs70] {
    font-size: 0.75rem;
    color: var(--da-text-muted);
    margin-top: 1px;
}

.da-existing-badge[b-dh7ixirs70] {
    font-size: 0.65rem;
    font-weight: 600;
    background: var(--da-amber);
    color: #1a1a2e;
    padding: 1px 6px;
    border-radius: 8px;
    white-space: nowrap;
}

/* Existing assessment notice */
.da-existing-notice[b-dh7ixirs70] {
    margin-top: 1.25rem;
    padding: 1rem;
    background: #FFF8E6;
    border: 1px solid #FFE082;
    border-radius: 8px;
}

    .da-existing-notice p[b-dh7ixirs70] {
        font-size: 0.85rem;
        color: var(--da-text);
        margin: 0 0 0.75rem 0;
    }

.da-existing-actions[b-dh7ixirs70] {
    display: flex;
    gap: 8px;
}

.da-btn-view-existing[b-dh7ixirs70] {
    padding: 6px 16px;
    border: none;
    border-radius: 6px;
    background: var(--da-teal);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.15s;
}

    .da-btn-view-existing:hover[b-dh7ixirs70] {
        opacity: 0.85;
    }

/* ── Download link (header) ── */
.da-download-link[b-dh7ixirs70] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 0.6rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--da-teal);
    text-decoration: none;
    transition: color 0.15s;
}

    .da-download-link:hover[b-dh7ixirs70] {
        color: #006a75;
        text-decoration: underline;
    }

    .da-download-link svg[b-dh7ixirs70] {
        stroke: currentColor;
    }

/* ── Loading spinner ── */
.da-spinner[b-dh7ixirs70] {
    width: 28px;
    height: 28px;
    border: 3px solid var(--da-border);
    border-top: 3px solid var(--da-teal);
    border-radius: 50%;
    animation: da-spin-b-dh7ixirs70 0.8s linear infinite;
}

@keyframes da-spin-b-dh7ixirs70 {
    to {
        transform: rotate(360deg);
    }
}

/* ── Export buttons: wrap on medium, stack on small ── */

@media (max-width: 750px) {
    .da-export-buttons[b-dh7ixirs70] {
        flex-direction: column;
        width: 100%;
    }

    .da-export-btn[b-dh7ixirs70] {
        width: 100%;
        justify-content: center;
    }

    .da-header-right[b-dh7ixirs70] {
        width: 100%;
    }
}
/* /Components/Pages/DuplicateStudents.razor.rz.scp.css */
/* DuplicateStudents css */

.welcome-container[b-42k9h6ti2i] {
    background-color: #f8f9fa;
    border-left: 3px solid #e74c3c;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 0.5rem;
}

.welcome-content[b-42k9h6ti2i] {
    flex: 1;
}

.welcome-title[b-42k9h6ti2i] {
    color: #e74c3c;
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 1rem;
    font-weight: 600;
}

.welcome-text[b-42k9h6ti2i] {
    color: #4a4a4a;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.welcome-text.warning-text[b-42k9h6ti2i] {
    background-color: #fff3cd;
    border-left: 3px solid #ffc107;
    padding: 0.75rem;
    border-radius: 4px;
    color: #856404;
}

.welcome-text.warning-text i[b-42k9h6ti2i] {
    margin-right: 0.5rem;
    color: #ffc107;
}

/* Dashboard Container */
.dashboard-container[b-42k9h6ti2i] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 20px;
}

/* Student Selection Panels */
.student-selection-panel[b-42k9h6ti2i] {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.student-selection-panel.duplicate-panel[b-42k9h6ti2i] {
    border-top: 6px solid #e74c3c;
}

.student-selection-panel.primary-panel[b-42k9h6ti2i] {
    border-top: 6px solid #28a745;
}

.panel-header[b-42k9h6ti2i] {
    color: #2c3e50;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f1f3f5;
    display: flex;
    align-items: center;
    gap: 10px;
}

.panel-header i[b-42k9h6ti2i] {
    font-size: 1.2rem;
}

.duplicate-panel .panel-header[b-42k9h6ti2i] {
    color: #e74c3c;
}

.primary-panel .panel-header[b-42k9h6ti2i] {
    color: #28a745;
}

/* Search Section */
.search-section[b-42k9h6ti2i] {
    margin-bottom: 20px;
}

.search-label[b-42k9h6ti2i] {
    display: block;
    font-weight: 500;
    color: #495057;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.student-search-box[b-42k9h6ti2i] {
    width: 100%;
}

/* Student Details */
.student-details[b-42k9h6ti2i] {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #f1f3f5;
}

.details-header[b-42k9h6ti2i] {
    color: #2c3e50;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.detail-row[b-42k9h6ti2i] {
    display: flex;
    justify-content: space-between;
    padding: 8px 12px;
    margin-bottom: 6px;
    background-color: #f8f9fa;
    border-radius: 6px;
    transition: background-color 0.2s ease;
}

.detail-row:hover[b-42k9h6ti2i] {
    background-color: #e9ecef;
}

.detail-label[b-42k9h6ti2i] {
    font-weight: 500;
    color: #6c757d;
    font-size: 0.9rem;
}

.detail-value[b-42k9h6ti2i] {
    color: #2c3e50;
    font-weight: 400;
    text-align: right;
}

.status-badge[b-42k9h6ti2i] {
    padding: 4px 12px;
    border-radius: 12px;
    background-color: #28a745;
    color: white;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Action Panel */
.dashboard-actions[b-42k9h6ti2i] {
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-top: 6px solid #3498db;
}

.full-width-actions[b-42k9h6ti2i] {
    grid-column: 1 / -1;
}

.actions-header[b-42k9h6ti2i] {
    color: #2c3e50;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f1f3f5;
}

.action-button[b-42k9h6ti2i] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    border-radius: 8px;
    font-weight: 500;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
}

.action-button i[b-42k9h6ti2i] {
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.action-button:hover[b-42k9h6ti2i] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.mark-duplicate-button[b-42k9h6ti2i] {
    background-color: #e74c3c;
}

.mark-duplicate-button:hover[b-42k9h6ti2i] {
    background-color: #c0392b;
}

.clear-button[b-42k9h6ti2i] {
    background-color: #6c757d;
}

.clear-button:hover[b-42k9h6ti2i] {
    background-color: #5a6268;
}

/* Confirmation Box */
.confirmation-box[b-42k9h6ti2i] {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 15px;
}

.confirmation-box i[b-42k9h6ti2i] {
    color: #ffc107;
    margin-right: 10px;
    font-size: 1.2rem;
}

.confirmation-box p[b-42k9h6ti2i] {
    margin: 8px 0;
    color: #856404;
    line-height: 1.6;
}

.confirmation-box .warning-text[b-42k9h6ti2i] {
    font-weight: 600;
    color: #e74c3c;
    margin-top: 10px;
}

/* Info Box */
.info-box[b-42k9h6ti2i] {
    background-color: #d1ecf1;
    border-left: 4px solid #17a2b8;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 15px;
}

.info-box i[b-42k9h6ti2i] {
    color: #17a2b8;
    margin-right: 10px;
    font-size: 1.2rem;
}

.info-box p[b-42k9h6ti2i] {
    margin: 0;
    color: #0c5460;
}

/* Popup Styles */
.popup-content[b-42k9h6ti2i] {
    padding: 20px;
}

.popup-warning[b-42k9h6ti2i] {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 6px;
}

.popup-warning i[b-42k9h6ti2i] {
    font-size: 2rem;
    color: #ffc107;
}

.popup-warning h4[b-42k9h6ti2i] {
    margin: 0;
    color: #856404;
    font-size: 1.2rem;
}

.popup-student-info[b-42k9h6ti2i] {
    background-color: #f8d7da;
    border-left: 4px solid #e74c3c;
    padding: 12px 15px;
    border-radius: 6px;
    margin: 15px 0;
    color: #721c24;
    line-height: 1.6;
}

.popup-student-info.primary[b-42k9h6ti2i] {
    background-color: #d4edda;
    border-left: 4px solid #28a745;
    color: #155724;
}

.popup-note[b-42k9h6ti2i] {
    background-color: #d1ecf1;
    border-left: 4px solid #17a2b8;
    padding: 12px 15px;
    border-radius: 6px;
    margin-top: 15px;
    color: #0c5460;
}

.popup-note i[b-42k9h6ti2i] {
    margin-right: 8px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .dashboard-container[b-42k9h6ti2i] {
        grid-template-columns: 1fr;
    }

    .full-width-actions[b-42k9h6ti2i] {
        grid-column: 1;
    }
}

@media (max-width: 768px) {
    .dashboard-container[b-42k9h6ti2i] {
        padding: 10px;
        gap: 15px;
    }

    .student-selection-panel[b-42k9h6ti2i],
    .dashboard-actions[b-42k9h6ti2i] {
        padding: 15px;
    }

    .panel-header[b-42k9h6ti2i],
    .actions-header[b-42k9h6ti2i] {
        font-size: 1.2rem;
    }

    .action-button[b-42k9h6ti2i] {
        padding: 12px 15px;
    }

    .detail-row[b-42k9h6ti2i] {
        flex-direction: column;
        gap: 4px;
    }

    .detail-value[b-42k9h6ti2i] {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .welcome-container[b-42k9h6ti2i] {
        padding: 1rem;
    }

    .welcome-title[b-42k9h6ti2i] {
        font-size: 1.3rem;
    }

    .welcome-text[b-42k9h6ti2i] {
        font-size: 0.95rem;
    }

    .panel-header[b-42k9h6ti2i] {
        font-size: 1.1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}

/* Add/Update these styles in DuplicateStudents.razor.css */

/* Student Selection Panels - REMOVE overflow: hidden */
.student-selection-panel[b-42k9h6ti2i] {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    padding: 20px;
    position: relative;
    /* REMOVE: overflow: hidden; */
    /* This was clipping the dropdown */
}

/* Search Section - needs to have higher z-index and proper positioning */
.search-section[b-42k9h6ti2i] {
    position: relative;
    margin-bottom: 20px;
    z-index: 100; /* Higher than other content */
}

/* Search Input */
.student-search-input[b-42k9h6ti2i] {
    width: 100%;
    padding: 0.75rem;
    border: 1.5px solid #ced4da;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

    .student-search-input:focus[b-42k9h6ti2i] {
        border-color: #3498db;
        outline: none;
        box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
    }

/* Search Results Dropdown - CRITICAL FIXES */
.search-results-dropdown[b-42k9h6ti2i] {

    z-index: 1000; /* Very high to appear above everything */
    width: 100%;
    max-height: 300px;
    overflow-y: auto;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2); /* Stronger shadow */
    margin-top: 4px;
    left: 0;
    top: 100%; /* Position below the input */
}

.search-result-item[b-42k9h6ti2i] {
    padding: 12px 15px;
    cursor: pointer;
    border-bottom: 1px solid #f1f3f5;
    transition: background-color 0.15s ease;
    display: flex;
    gap: 10px;
    align-items: center;
}

    .search-result-item:last-child[b-42k9h6ti2i] {
        border-bottom: none;
    }

    .search-result-item:hover[b-42k9h6ti2i] {
        background-color: #f8f9fa;
    }

    .search-result-item:active[b-42k9h6ti2i] {
        background-color: #e9ecef;
    }

.result-id[b-42k9h6ti2i] {
    font-weight: 600;
    color: #6c757d;
    font-size: 0.85rem;
    min-width: 60px;
}

.result-name[b-42k9h6ti2i] {
    font-weight: 500;
    color: #2c3e50;
    flex: 1;
}

.result-school[b-42k9h6ti2i] {
    color: #6c757d;
    font-size: 0.9rem;
}

/* Dashboard Container - ensure it doesn't clip */
.dashboard-container[b-42k9h6ti2i] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 20px;
    overflow: visible; /* Don't clip children */
}

/* Search info message */
.search-info[b-42k9h6ti2i] {
    background-color: #d1ecf1;
    border-left: 4px solid #17a2b8;
    padding: 10px 12px;
    border-radius: 6px;
    margin-top: 10px;
    color: #0c5460;
    font-size: 0.9rem;
}

    .search-info i[b-42k9h6ti2i] {
        margin-right: 8px;
        color: #17a2b8;
    }
/* /Components/Pages/EnrolmentExportImport.razor.rz.scp.css */

/* EnrolmentExportImport CSS */

.welcome-container[b-u0kwu23g0v] {
    background-color: #f8f9fa;
    border-left: 3px solid #004fb9;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 0.5rem;
}

.welcome-grid[b-u0kwu23g0v] {
    display: block; /* Changed from flex since no video section */
}

.welcome-content[b-u0kwu23g0v] {
    width: 100%; /* Full width now */
}

.dropdown-column[b-u0kwu23g0v] {
    grid-column: 2;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.welcome-title[b-u0kwu23g0v] {
    color: #004fb9;
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 1rem;
    font-weight: 600;
}

.welcome-text[b-u0kwu23g0v] {
    color: #4a4a4a;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Stack vertically on screens ≤ 1024px */
@media (max-width: 1024px) {
    .welcome-grid[b-u0kwu23g0v] {
        flex-direction: column; /* Stacks children vertically */
    }

    .video-player-section[b-u0kwu23g0v] {
        max-width: 100%; /* Full width on small screens */
        margin-top: 20px; /* Adds space between text and video */
    }
}

/* User Admin Dashboard Container */
.dashboard-container[b-u0kwu23g0v] {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    padding: 20px;
}

/* Grid Panel Styling */
.dashboard-card[b-u0kwu23g0v] {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    padding: 20px;
    position: relative;
    overflow: hidden;
    border-top: 6px solid #3A86FF;
}

.dashboard-double-width[b-u0kwu23g0v] {
    grid-column: 1;
}

/* Grid Customization */
.dxbl-gridview[b-u0kwu23g0v] {
    border: none !important;
    border-radius: 8px;
}

    .dxbl-gridview .dxbl-grid-header[b-u0kwu23g0v] {
        background-color: #f8f9fa;
        border-bottom: 2px solid #e9ecef;
    }

    .dxbl-gridview .dxbl-grid-data-row:hover[b-u0kwu23g0v] {
        background-color: #f8fafc !important;
    }

/* Actions Panel */
.dashboard-actions[b-u0kwu23g0v] {
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-top: 6px solid #06D6A0;
}

.actions-header[b-u0kwu23g0v] {
    color: #2c3e50;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f1f3f5;
}

.action-button[b-u0kwu23g0v] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    border-radius: 8px;
    font-weight: 500;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: none;
    width: 100%;
    text-align: left;
}

    .action-button i[b-u0kwu23g0v] {
        font-size: 1.2rem;
        width: 20px;
        text-align: center;
    }

    .action-button:hover[b-u0kwu23g0v] {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

/* Button Colors */
.activate-button[b-u0kwu23g0v] {
    background-color: #28a745;
}

.deactivate-button[b-u0kwu23g0v] {
    background-color: #ffc107;
    color: #212529;
}

.reassign-button[b-u0kwu23g0v] {
    background-color: #007bff;
}

.export-excel-button[b-u0kwu23g0v] {
    background-color: #1d6f42;
}

.actions-divider[b-u0kwu23g0v] {
    border: none;
    border-top: 1px solid #e9ecef;
    margin: 12px 0;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .dashboard-container[b-u0kwu23g0v] {
        grid-template-columns: 1fr;
    }

    .dashboard-double-width[b-u0kwu23g0v] {
        grid-column: 1;
    }
}

@media (max-width: 768px) {
    .dashboard-card[b-u0kwu23g0v],
    .dashboard-actions[b-u0kwu23g0v] {
        padding: 15px;
    }

    .action-button[b-u0kwu23g0v] {
        padding: 12px 15px;
    }
}

.video-info-box h4[b-u0kwu23g0v] {
    margin-top: 0;
    color: #2a5885;
}

.video-container[b-u0kwu23g0v] {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    overflow: hidden;
}

.video-player[b-u0kwu23g0v] {
    width: 100%;
    height: auto;
    max-height: 400px;
    background-color: #000;
}

.video-meta[b-u0kwu23g0v] {
    padding: 0.75rem 1rem;
    background-color: #f8f9fa;
    border-top: 1px solid #e9ecef;
    font-size: 0.9rem;
    color: #666;
}

.video-page-content[b-u0kwu23g0v] {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    flex-grow: 1;
    padding-top: 15px;
}

.video-player-section[b-u0kwu23g0v] {
    flex: 1; /* Equal width to welcome-content */
    max-width: 455px; /* Limits video width */
}


    .vertical-tabs-container[b-u0kwu23g0v] {
        flex-direction: column;
    }

    .dx-tab-panel[b-u0kwu23g0v] {
        flex-direction: row;
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #e9ecef;
        overflow-x: auto;
    }

    .dx-tab[b-u0kwu23g0v] {
        font-size: 0.9rem; /* Slightly smaller on mobile */
        padding: 0.6rem 1rem;
        white-space: nowrap; /* Prevent wrapping */
        border-left: none !important;
        border-bottom: 3px solid transparent;
    }

        .dx-tab.dx-tab-selected[b-u0kwu23g0v] {
            border-bottom: 3px solid #2a5885; /* Horizontal indicator on mobile */
            border-left: none !important;
        }

    .video-page-content[b-u0kwu23g0v] {
        flex-direction: column;
    }

    .video-info-section[b-u0kwu23g0v] {
        flex: 0 0 auto;
    }

    /* ========================================
   VALIDATION RESULTS PANEL - ENHANCED
   ======================================== */

    .validation-summary[b-u0kwu23g0v] {
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        padding: 25px;
        border-radius: 12px;
        margin-bottom: 20px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    }

    .summary-grid[b-u0kwu23g0v] {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }

    .summary-item[b-u0kwu23g0v] {
        text-align: center;
        padding: 20px 15px;
        background: white;
        border-radius: 10px;
        box-shadow: 0 2px 6px rgba(0,0,0,0.08);
        transition: transform 0.2s, box-shadow 0.2s;
    }

        .summary-item:hover[b-u0kwu23g0v] {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.12);
        }

        .summary-item.error-item[b-u0kwu23g0v] {
            background: linear-gradient(135deg, #fff5f5 0%, #ffe5e5 100%);
            border-left: 4px solid #dc3545;
        }

        .summary-item.warning-item[b-u0kwu23g0v] {
            background: linear-gradient(135deg, #fffbf0 0%, #fff3cd 100%);
            border-left: 4px solid #ffc107;
        }

        .summary-item.info-item[b-u0kwu23g0v] {
            background: linear-gradient(135deg, #f0f8ff 0%, #e7f3ff 100%);
            border-left: 4px solid #17a2b8;
        }

        .summary-item.success-item[b-u0kwu23g0v] {
            background: linear-gradient(135deg, #f0fff4 0%, #d4edda 100%);
            border-left: 4px solid #28a745;
        }

    .summary-label[b-u0kwu23g0v] {
        font-size: 0.875rem;
        font-weight: 500;
        color: #6c757d;
        margin-bottom: 8px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .summary-value[b-u0kwu23g0v] {
        font-size: 2rem;
        font-weight: 700;
        color: #2c3e50;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    }

    /* Tab Styling */
    .dxbl-tabs[b-u0kwu23g0v] {
        margin-top: 10px;
    }

    .dxbl-tab[b-u0kwu23g0v] {
        font-weight: 500;
        font-size: 0.95rem;
        padding: 12px 20px;
    }

    .dxbl-tab-selected[b-u0kwu23g0v] {
        font-weight: 600;
    }

    /* Validation List Items - ENHANCED */
    .validation-list[b-u0kwu23g0v] {
        max-height: 450px;
        overflow-y: auto;
        padding: 15px;
        background: #fafbfc;
        border-radius: 8px;
    }

    .validation-item[b-u0kwu23g0v] {
        padding: 15px 18px;
        margin-bottom: 12px;
        border-radius: 8px;
        border-left: 4px solid;
        background: white;
        box-shadow: 0 1px 3px rgba(0,0,0,0.06);
        transition: all 0.2s;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    }

        .validation-item:hover[b-u0kwu23g0v] {
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            transform: translateX(2px);
        }

        .validation-item.error[b-u0kwu23g0v] {
            background: linear-gradient(to right, #fff5f5 0%, white 100%);
            border-left-color: #dc3545;
        }

        .validation-item.warning[b-u0kwu23g0v] {
            background: linear-gradient(to right, #fffbf0 0%, white 100%);
            border-left-color: #ffc107;
        }

        .validation-item.info[b-u0kwu23g0v] {
            background: linear-gradient(to right, #f0f8ff 0%, white 100%);
            border-left-color: #17a2b8;
        }

        .validation-item.success[b-u0kwu23g0v] {
            background: linear-gradient(to right, #f0fff4 0%, white 100%);
            border-left-color: #28a745;
        }

    .validation-header[b-u0kwu23g0v] {
        font-size: 1rem;
        font-weight: 600;
        margin-bottom: 6px;
        color: #2c3e50;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .validation-message[b-u0kwu23g0v] {
        font-size: 0.9rem;
        color: #495057;
        line-height: 1.5;
    }

    .validation-item.error .validation-message[b-u0kwu23g0v] {
        color: #721c24;
    }

    .validation-item.warning .validation-message[b-u0kwu23g0v] {
        color: #856404;
    }

    .validation-item.info .validation-message[b-u0kwu23g0v] {
        color: #0c5460;
    }

    .validation-item.success .validation-message[b-u0kwu23g0v] {
        color: #155724;
    }

    .student-id[b-u0kwu23g0v] {
        color: #6c757d;
        font-size: 0.85rem;
        font-weight: 500;
        background: #e9ecef;
        padding: 2px 8px;
        border-radius: 4px;
        margin-left: 8px;
    }

.validation-progress[b-u0kwu23g0v] {
    padding: 15px;
    background: #e3f2fd;
    border-radius: 8px;
    margin: 10px 0;
    text-align: center;
}

.progress-bar-container[b-u0kwu23g0v] {
    width: 100%;
    height: 20px;
    background: #ddd;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-bar[b-u0kwu23g0v] {
    height: 100%;
    background: linear-gradient(90deg, #2196F3, #21CBF3);
    border-radius: 10px;
    transition: width 0.3s ease;
}

    /* Custom scrollbar for validation list */
    .validation-list[b-u0kwu23g0v]::-webkit-scrollbar {
        width: 8px;
    }

    .validation-list[b-u0kwu23g0v]::-webkit-scrollbar-track {
        background: #f1f3f5;
        border-radius: 4px;
    }

    .validation-list[b-u0kwu23g0v]::-webkit-scrollbar-thumb {
        background: #adb5bd;
        border-radius: 4px;
    }

        .validation-list[b-u0kwu23g0v]::-webkit-scrollbar-thumb:hover {
            background: #868e96;
        }

    /* Responsive adjustments */
    @media (max-width: 1024px) {
        .summary-grid[b-u0kwu23g0v] {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 768px) {
        .summary-grid[b-u0kwu23g0v] {
            grid-template-columns: 1fr;
        }

        .validation-item[b-u0kwu23g0v] {
            padding: 12px 15px;
        }
    }

/* Mode Selector Radio Buttons - Enhanced */
.mode-selector[b-u0kwu23g0v] {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.radio-option[b-u0kwu23g0v] {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    font-size: 1rem;
    padding: 12px 20px;
    border-radius: 8px;
    border: 2px solid #90caf9;
    background-color: white;
    transition: all 0.3s ease;
    min-width: 180px;
    justify-content: center;
}

    .radio-option:hover[b-u0kwu23g0v] {
        background-color: #e3f2fd;
        border-color: #42a5f5;
    }

    .radio-option input[type="radio"][b-u0kwu23g0v] {
        margin-right: 10px;
        cursor: pointer;
        width: 20px;
        height: 20px;
        accent-color: #1976d2;
    }

    .radio-option span[b-u0kwu23g0v] {
        user-select: none;
        color: #424242;
    }

    /* Selected state - much more prominent */
    .radio-option:has(input:checked)[b-u0kwu23g0v] {
        background: linear-gradient(135deg, #1976d2 0%, #42a5f5 100%);
        border-color: #1565c0;
        color: white;
        font-weight: 600;
        box-shadow: 0 4px 12px rgba(25, 118, 210, 0.4);
        transform: translateY(-2px);
    }

        .radio-option:has(input:checked) span[b-u0kwu23g0v] {
            color: white;
        }

/* Dynamic Export Button Colors */
.export-student-button[b-u0kwu23g0v] {
    background: linear-gradient(135deg, #1976d2 0%, #42a5f5 100%);
}

    .export-student-button:hover:not(:disabled)[b-u0kwu23g0v] {
        background: linear-gradient(135deg, #1565c0 0%, #1976d2 100%);
    }

.export-teacher-button[b-u0kwu23g0v] {
    background: linear-gradient(135deg, #7b1fa2 0%, #9c27b0 100%);
}

    .export-teacher-button:hover:not(:disabled)[b-u0kwu23g0v] {
        background: linear-gradient(135deg, #6a1b9a 0%, #7b1fa2 100%);
    }

.action-button:disabled[b-u0kwu23g0v] {
    opacity: 0.5;
    cursor: not-allowed;
}
/* /Components/Pages/Indicators_Dashboard.razor.rz.scp.css */
/* ═══════════════════════════════════════════
   TEMIS Indicators Page — Scoped Styles (v2.91)
   ═══════════════════════════════════════════ */

.page-indicators[b-jog2vzx2vt] {
    --blue: #004fb9;
    --teal: #00838f;
    --green: #06D6A0;
    --green-dark: #05a77d;
    --red: #e76f51;
    --purple: #8338EC;
    --amber: #f59f00;
    --text: #1a1a2e;
    --text-muted: #6c757d;
    --bg-page: #f4f7fa;
    --bg-card: #ffffff;
    --border: #e9ecef;
    --radius: 10px;
    --shadow: none;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text);
    padding: 1.25rem;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

    .page-indicators .dash-card[b-jog2vzx2vt],
    .chart-panel[b-jog2vzx2vt],
    .info-section[b-jog2vzx2vt],
    .export-section[b-jog2vzx2vt],
    .table-panel[b-jog2vzx2vt] {
        border: 1px solid var(--border);
        box-shadow: none;
        border-radius: 8px;
    }

    .table-panel[b-jog2vzx2vt] {
        min-width: 0;
    }

/* ═══════════ HEADER ═══════════ */
.indicators-header[b-jog2vzx2vt] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: #f8fafe;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border-top: 4px solid var(--teal);
}

.header-left[b-jog2vzx2vt] {
    flex: 1;
}

.page-title[b-jog2vzx2vt] {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text);
    margin: 0 0 0.5rem;
}

    .page-title svg[b-jog2vzx2vt] {
        color: var(--teal);
    }

.page-subtitle[b-jog2vzx2vt] {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
    max-width: 600px;
}

.header-controls[b-jog2vzx2vt] {
    flex-shrink: 0;
}

.year-label[b-jog2vzx2vt] {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

/* ═══════════ LOADING ═══════════ */
.loading-state[b-jog2vzx2vt] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 3rem;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.loading-dot[b-jog2vzx2vt] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--teal);
    animation: pulse-b-jog2vzx2vt 1.2s ease-in-out infinite;
}

@keyframes pulse-b-jog2vzx2vt {
    0%, 100% {
        opacity: 0.3;
        transform: scale(0.8);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* ═══════════ LEVEL TABS ═══════════ */
.level-tabs[b-jog2vzx2vt] {
    display: flex;
    gap: 4px;
    margin-top: 1rem;
    margin-bottom: 0;
    background: #f0f2f5;
    padding: 4px;
    border-radius: 10px;
    width: fit-content;
}

.level-tab[b-jog2vzx2vt] {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    border: none;
    background: transparent;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

    .level-tab:hover[b-jog2vzx2vt] {
        background: rgba(255,255,255,0.6);
        color: var(--text);
    }

    .level-tab.active[b-jog2vzx2vt] {
        background: var(--bg-card);
        color: var(--text);
        font-weight: 600;
        box-shadow: 0 1px 4px rgba(0,0,0,0.08);
    }

.tab-icon[b-jog2vzx2vt] {
    font-size: 1.1rem;
}

/* ═══════════ KPI CARDS ═══════════ */
.kpi-row[b-jog2vzx2vt] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.kpi-card[b-jog2vzx2vt] {
    background: var(--bg-card);
    border-radius: 8px;
    border: 1px solid var(--border);
    border-top: 3px solid var(--teal);
    padding: 0.9rem 1rem;
}

    .kpi-card:nth-child(2)[b-jog2vzx2vt] {
        border-top-color: var(--blue);
    }

    .kpi-card:nth-child(3)[b-jog2vzx2vt] {
        border-top-color: var(--green);
    }

    .kpi-card:nth-child(4)[b-jog2vzx2vt] {
        border-top-color: var(--amber);
    }

.kpi-label[b-jog2vzx2vt] {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 6px;
    line-height: 1.3;
}

.kpi-value[b-jog2vzx2vt] {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
}

.kpi-trend[b-jog2vzx2vt] {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

    .kpi-trend.up[b-jog2vzx2vt] {
        color: var(--green-dark);
    }

    .kpi-trend.down[b-jog2vzx2vt] {
        color: var(--red);
    }

    .kpi-trend.neutral[b-jog2vzx2vt] {
        color: var(--text-muted);
    }

.kpi-year[b-jog2vzx2vt] {
    font-size: 0.65rem;
    font-weight: 700;
    color: white;
    background: var(--teal);
    padding: 2px 8px;
    border-radius: 3px;
    width: fit-content;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.kpi-card:nth-child(2) .kpi-year[b-jog2vzx2vt] {
    background: var(--blue);
}

.kpi-card:nth-child(3) .kpi-year[b-jog2vzx2vt] {
    background: var(--green);
}

.kpi-card:nth-child(4) .kpi-year[b-jog2vzx2vt] {
    background: var(--amber);
}

.year-pills[b-jog2vzx2vt] {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}

.year-pill[b-jog2vzx2vt] {
    padding: 7px 14px;
    border: 1px solid var(--border);
    background: white;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

    .year-pill:hover[b-jog2vzx2vt] {
        border-color: var(--teal);
        color: var(--teal);
    }

    .year-pill.active[b-jog2vzx2vt] {
        background: var(--teal);
        color: white;
        border-color: var(--teal);
        font-weight: 600;
    }

/* ═══════════ CONTENT COLUMNS ═══════════ */
.content-columns[b-jog2vzx2vt] {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

/* ── Chart Panel ── */
.chart-panel[b-jog2vzx2vt] {
    background: var(--bg-card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.panel-header[b-jog2vzx2vt] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    border-bottom: 2px solid solid #f1f3f5;
}

    .panel-header h3[b-jog2vzx2vt] {
        font-size: 0.95rem;
        font-weight: 600;
        color: #495057;
        margin: 0;
    }

.chart-toggle[b-jog2vzx2vt] {
    display: flex;
    gap: 2px;
    background: #f0f2f5;
    padding: 2px;
    border-radius: 6px;
}

.metric-btn[b-jog2vzx2vt] {
    padding: 5px 12px;
    border: none;
    background: transparent;
    border-radius: 5px;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.15s;
}

    .metric-btn:hover[b-jog2vzx2vt] {
        color: var(--text);
    }

    .metric-btn.active[b-jog2vzx2vt] {
        background: white;
        color: var(--teal);
        font-weight: 600;
        box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    }

.chart-container[b-jog2vzx2vt] {
    padding: 1.25rem;
    min-height: 300px;
    position: relative;
}

.chart-indicator-label[b-jog2vzx2vt] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 1.25rem 12px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--teal);
    border-top: 1px solid var(--border);
}

/* ── Info Panel (Methodology + Analysis) ── */
.info-panel[b-jog2vzx2vt] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.info-section[b-jog2vzx2vt] {
    background: var(--bg-card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.info-toggle[b-jog2vzx2vt] {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 0.9rem 1rem;
    border: none;
    background: transparent;
    font-size: 0.88rem;
    font-weight: 600;
    color: #495057;
    cursor: pointer;
    text-align: left;
    transition: background 0.15s;
}

    .info-toggle:hover[b-jog2vzx2vt] {
        background: #fafbfc;
    }

    .info-toggle .chevron[b-jog2vzx2vt] {
        margin-left: auto;
        transition: transform 0.2s;
    }

    .info-toggle.open .chevron[b-jog2vzx2vt] {
        transform: rotate(180deg);
    }

.info-body[b-jog2vzx2vt] {
    padding: 0 1rem 1rem;
    border-top: 1px solid var(--border);
}

/* ── Table Row Styles ── */

.row-clickable[b-jog2vzx2vt] {
    cursor: pointer;
    transition: background 0.15s;
}

    .row-clickable:hover[b-jog2vzx2vt] {
        background: rgba(0, 131, 143, 0.06);
    }

.row-selected[b-jog2vzx2vt] {
    cursor: pointer;
    background: rgba(0, 131, 143, 0.1);
    border-left: 3px solid var(--teal);
}

    .row-selected td:first-child[b-jog2vzx2vt] {
        padding-left: calc(0.5rem - 3px); /* compensate for border */
    }

.row-no-chart[b-jog2vzx2vt] {
    cursor: default;
    opacity: 0.7;
}

.table-hint[b-jog2vzx2vt] {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--teal);
    background: rgba(0, 131, 143, 0.08);
    padding: 6px 12px;
    border-radius: 20px;
    border: 1px solid rgba(0, 131, 143, 0.2);
    white-space: nowrap;
}

.panel-header[b-jog2vzx2vt] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--border);
}

/* Methodology items */
.method-item[b-jog2vzx2vt] {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f5f5f5;
}

    .method-item:last-child[b-jog2vzx2vt] {
        border-bottom: none;
    }

.method-name[b-jog2vzx2vt] {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--teal);
    margin-bottom: 4px;
}

.method-desc[b-jog2vzx2vt] {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 6px;
}

.method-formula[b-jog2vzx2vt] {
    font-size: 0.78rem;
    color: #495057;
    background: #f8f9fa;
    padding: 6px 10px;
    border-radius: 4px;
    border-left: 3px solid var(--teal);
    font-family: 'Cascadia Code', 'Consolas', monospace;
    line-height: 1.4;
}

/* Analysis / Insights */
.analysis-body[b-jog2vzx2vt] {
    padding-top: 0.75rem;
}

.insight-item[b-jog2vzx2vt] {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 8px 0;
    font-size: 0.82rem;
    line-height: 1.5;
    border-bottom: 1px solid #f5f5f5;
}

    .insight-item:last-child[b-jog2vzx2vt] {
        border-bottom: none;
    }

.insight-icon[b-jog2vzx2vt] {
    flex-shrink: 0;
    font-size: 1rem;
    margin-top: 1px;
}

.insight-item.positive[b-jog2vzx2vt] {
    color: #1e6b3a;
}

.insight-item.negative[b-jog2vzx2vt] {
    color: #a83232;
}

.insight-item.neutral[b-jog2vzx2vt] {
    color: var(--text-muted);
}

/* Export */
.export-section[b-jog2vzx2vt] {
    background: var(--bg-card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 1rem;
}

.export-btn[b-jog2vzx2vt] {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 10px 16px;
    border: none;
    border-radius: 7px;
    background: #1d6f42;
    color: white;
    font-size: 0.88rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

    .export-btn:hover[b-jog2vzx2vt] {
        background: #165a36;
        transform: translateY(-1px);
    }

/* ═══════════ COMPARISON TABLE ═══════════ */
.table-panel[b-jog2vzx2vt] {
    background: var(--bg-card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.table-wrap[b-jog2vzx2vt] {
    overflow-x: auto;
    padding: 0 0.5rem 1rem;
}

.indicator-table[b-jog2vzx2vt] {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.82rem;
}

    .indicator-table thead th[b-jog2vzx2vt] {
        background: #f8f9fa;
        color: #495057;
        font-weight: 600;
        font-size: 0.7rem;
        text-transform: uppercase;
        letter-spacing: 0.4px;
        padding: 0.6rem 0.5rem;
        border-bottom: 2px solid var(--border);
        text-align: center;
        white-space: nowrap;
    }

.band-header[b-jog2vzx2vt] {
    border-bottom: 3px solid !important;
}

.band-prev[b-jog2vzx2vt] {
    border-bottom-color: var(--text-muted) !important;
}

.band-curr[b-jog2vzx2vt] {
    border-bottom-color: var(--blue) !important;
}

.band-change[b-jog2vzx2vt] {
    border-bottom-color: var(--teal) !important;
}

.indicator-table tbody td[b-jog2vzx2vt] {
    padding: 0.55rem 0.5rem;
    border-bottom: 1px solid #f5f5f5;
}

.indicator-table tbody tr:hover[b-jog2vzx2vt] {
    background: #fafbfc;
}

.col-level[b-jog2vzx2vt] {
    text-align: left;
    font-weight: 600;
    color: var(--text-muted);
    font-size: 0.75rem;
    min-width: 70px;
}

.col-indicator[b-jog2vzx2vt] {
    text-align: left;
    font-weight: 500;
    min-width: 180px;
}

.col-num[b-jog2vzx2vt] {
    text-align: center;
    font-variant-numeric: tabular-nums;
    min-width: 55px;
}

.change-up[b-jog2vzx2vt] {
    color: var(--green-dark);
    font-weight: 600;
}

.change-down[b-jog2vzx2vt] {
    color: var(--red);
    font-weight: 600;
}

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 1200px) {
    .content-columns[b-jog2vzx2vt] {
        grid-template-columns: 1fr;
    }

    .indicators-header[b-jog2vzx2vt] {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .page-indicators[b-jog2vzx2vt] {
        padding: 0.5rem;
    }

    .indicators-header[b-jog2vzx2vt] {
        flex-direction: column;
        gap: 0.75rem;
        padding: 1rem;
    }

    .page-title[b-jog2vzx2vt] {
        font-size: 1.15rem;
    }

    .page-subtitle[b-jog2vzx2vt] {
        font-size: 0.82rem;
    }

    .level-tabs[b-jog2vzx2vt] {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .level-tab[b-jog2vzx2vt] {
        padding: 8px 14px;
        font-size: 0.8rem;
    }

    .kpi-row[b-jog2vzx2vt] {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }

    .kpi-card[b-jog2vzx2vt] {
        padding: 0.7rem;
    }

    .kpi-value[b-jog2vzx2vt] {
        font-size: 1.3rem;
    }

    .kpi-label[b-jog2vzx2vt] {
        font-size: 0.68rem;
    }

    .kpi-year[b-jog2vzx2vt] {
        font-size: 0.6rem;
        padding: 1px 6px;
    }

    .content-columns[b-jog2vzx2vt] {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .chart-container[b-jog2vzx2vt] {
        padding: 0.5rem;
        min-height: 250px;
    }

    .panel-header[b-jog2vzx2vt] {
        padding: 0.75rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

        .panel-header h3[b-jog2vzx2vt] {
            font-size: 0.88rem;
        }

    .chart-toggle[b-jog2vzx2vt] {
        align-self: flex-start;
    }

    .indicator-table[b-jog2vzx2vt] {
        font-size: 0.72rem;
    }

        .indicator-table thead th[b-jog2vzx2vt] {
            font-size: 0.6rem;
            padding: 0.4rem 0.3rem;
        }

        .indicator-table tbody td[b-jog2vzx2vt] {
            padding: 0.4rem 0.3rem;
        }

    .year-pills[b-jog2vzx2vt] {
        gap: 3px;
    }

    .year-pill[b-jog2vzx2vt] {
        padding: 5px 10px;
        font-size: 0.75rem;
    }

    .method-item[b-jog2vzx2vt] {
        padding: 0.5rem 0;
    }

    .method-name[b-jog2vzx2vt] {
        font-size: 0.78rem;
    }

    .method-desc[b-jog2vzx2vt] {
        font-size: 0.75rem;
    }

    .method-formula[b-jog2vzx2vt] {
        font-size: 0.72rem;
        padding: 4px 8px;
    }

    .insight-item[b-jog2vzx2vt] {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .kpi-row[b-jog2vzx2vt] {
        grid-template-columns: 1fr;
    }

    .level-tab[b-jog2vzx2vt] {
        padding: 6px 10px;
        font-size: 0.75rem;
    }
}
/* /Components/Pages/Reporting/ReportingHub.razor.rz.scp.css */
/* ============================================================================
   TEMIS Reporting Hub — Scoped CSS
   Location: TemisV2_Auth.Client/Pages/ReportingHub.razor.css
   ============================================================================
   Page-level styles only. Profile panel styles live in their own component
   CSS files: StudentProfilePanel.razor.css / TeacherProfilePanel.razor.css
   ============================================================================ */

/* ═══════════ Design Tokens ═══════════ */
.page-reporting[b-gbhehvlo9p] {
    --rh-teal: #00838f;
    --rh-teal-light: #e0f2f3;
    --rh-teal-bg: #f0fafa;
    --rh-blue: #004fb9;
    --rh-blue-light: #e8f1fc;
    --rh-green: #06D6A0;
    --rh-green-dark: #05a77d;
    --rh-amber: #f59f00;
    --rh-amber-light: #fff8e6;
    --rh-red: #e76f51;
    --rh-text: #1a1a2e;
    --rh-text-muted: #6c757d;
    --rh-text-light: #adb5bd;
    --rh-bg: #f4f7fa;
    --rh-card: #ffffff;
    --rh-border: #e9ecef;
    --rh-border-light: #f1f3f5;
    --rh-radius: 10px;
    --rh-shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
    --rh-shadow: 0 2px 8px rgba(0,0,0,0.06);
    background: #f4f6f9;
    min-height: 100vh;
}

.page-reporting[b-gbhehvlo9p] {
    background: #f4f6f9;
    min-height: 100vh;
}

.rh-inline-link[b-gbhehvlo9p] {
    color: var(--teal);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
}

    .rh-inline-link:hover[b-gbhehvlo9p] {
        text-decoration: underline;
    }

/* ═══════════ HEADER ═══════════ */
.rh-header[b-gbhehvlo9p] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 1.25rem;
    padding: 1.5rem;
    background: #f8fafe;
    border: 1px solid var(--rh-border);
    border-radius: var(--rh-radius);
    border-top: 4px solid var(--rh-teal);
}

.rh-header-left[b-gbhehvlo9p] { flex: 1; }
.rh-header-right[b-gbhehvlo9p] { flex-shrink: 0; display: flex; flex-direction: column; gap: 12px; }

.rh-page-title[b-gbhehvlo9p] {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--rh-text);
    margin-bottom: 0.4rem;
}
.rh-page-title svg[b-gbhehvlo9p] { color: var(--rh-teal); }

.rh-subtitle[b-gbhehvlo9p] {
    font-size: 0.88rem;
    color: var(--rh-text-muted);
    line-height: 1.6;
    max-width: 600px;
    margin-bottom: 0.5rem;
}

/* Role chips */
.rh-role-chip[b-gbhehvlo9p] {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 10px;
    border: 1px solid;
}
.rh-role-ministry[b-gbhehvlo9p] { background: #fff3e0; border-color: #ffcc80; color: #e65100; }
.rh-role-school[b-gbhehvlo9p] { background: #e8f5e9; border-color: #a5d6a7; color: #2e7d32; }

/* ═══════════ FILTER CONTROLS ═══════════ */
.rh-filter-group label[b-gbhehvlo9p],
.rh-filter-label[b-gbhehvlo9p] {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--rh-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.rh-pill-row[b-gbhehvlo9p] { display: flex; gap: 4px; flex-wrap: wrap; }

.rh-pill[b-gbhehvlo9p] {
    padding: 7px 14px;
    border: 1px solid var(--rh-border);
    background: white;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--rh-text-muted);
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}
.rh-pill:hover[b-gbhehvlo9p] { border-color: var(--rh-teal); color: var(--rh-teal); }
.rh-pill.active[b-gbhehvlo9p] {
    background: var(--rh-teal);
    color: white;
    border-color: var(--rh-teal);
    font-weight: 600;
}

.rh-school-select[b-gbhehvlo9p] {
    padding: 7px 30px 7px 12px;
    border: 1px solid var(--rh-border);
    border-radius: 8px;
    font-size: 0.85rem;
    font-family: inherit;
    color: var(--rh-text);
    background: white;
    cursor: pointer;
    appearance: auto;
    min-width: 220px;
}

/* ═══════════ TAB BAR ═══════════ */
.rh-tab-bar[b-gbhehvlo9p] {
    display: flex;
    gap: 3px;
    background: #e8eaed;
    padding: 4px;
    border-radius: 10px;
    margin-bottom: 1.25rem;
    width: fit-content;
}

.rh-tab-btn[b-gbhehvlo9p] {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 10px 22px;
    border: none;
    background: transparent;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--rh-text-muted);
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
    white-space: nowrap;
}
.rh-tab-btn:hover[b-gbhehvlo9p] { background: rgba(255,255,255,0.5); color: var(--rh-text); }
.rh-tab-btn.active[b-gbhehvlo9p] {
    background: white;
    color: var(--rh-text);
    font-weight: 600;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}
.rh-tab-btn:disabled[b-gbhehvlo9p] { opacity: 0.5; cursor: not-allowed; }
.rh-tab-icon[b-gbhehvlo9p] { font-size: 1.05rem; }

.rh-future-badge[b-gbhehvlo9p] {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.6rem;
    font-weight: 700;
    color: #546e7a;
    background: #eceff1;
    padding: 2px 7px;
    border-radius: 10px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

/* ── Tab bar spacer pushes export button to the right ── */
.rh-tab-spacer[b-gbhehvlo9p] {
    flex: 1;
}

/* ── Export button styled to sit in the tab bar ── */
.rh-tab-export-btn[b-gbhehvlo9p] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border: 1px solid var(--teal, #0d9488);
    border-radius: 6px;
    background: var(--teal, #0d9488);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: opacity 0.15s ease;
}

    .rh-tab-export-btn:hover:not(:disabled)[b-gbhehvlo9p] {
        opacity: 0.85;
    }

    .rh-tab-export-btn:disabled[b-gbhehvlo9p] {
        opacity: 0.5;
        cursor: not-allowed;
    }

    .rh-tab-export-btn svg[b-gbhehvlo9p] {
        stroke: #fff;
    }

/* ═══════════ KPI CARDS ═══════════ */
.rh-kpi-row[b-gbhehvlo9p] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(185px, 1fr));
    gap: 0.85rem;
    margin-bottom: 1.25rem;
}

.rh-kpi-card[b-gbhehvlo9p] {
    background: var(--rh-card);
    border: 1px solid var(--rh-border);
    border-radius: 8px;
    padding: 0.85rem 1rem;
    border-top: 3px solid var(--rh-teal);
    transition: transform 0.15s, box-shadow 0.15s;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.rh-kpi-card:hover[b-gbhehvlo9p] { transform: translateY(-1px); }

.rh-accent-teal[b-gbhehvlo9p] { border-top-color: var(--rh-teal); }
.rh-accent-blue[b-gbhehvlo9p] { border-top-color: var(--rh-blue); }
.rh-accent-green[b-gbhehvlo9p] { border-top-color: var(--rh-green); }
.rh-accent-amber[b-gbhehvlo9p] { border-top-color: var(--rh-amber); }
.rh-accent-red[b-gbhehvlo9p] { border-top-color: var(--rh-red); }

.rh-accent-teal .rh-kpi-badge[b-gbhehvlo9p] { background: var(--rh-teal); }
.rh-accent-blue .rh-kpi-badge[b-gbhehvlo9p] { background: var(--rh-blue); }
.rh-accent-green .rh-kpi-badge[b-gbhehvlo9p] { background: var(--rh-green); }
.rh-accent-amber .rh-kpi-badge[b-gbhehvlo9p] { background: var(--rh-amber); }
.rh-accent-red .rh-kpi-badge[b-gbhehvlo9p] { background: var(--rh-red); }

.rh-kpi-badge[b-gbhehvlo9p] {
    font-size: 0.6rem;
    font-weight: 700;
    color: white;
    background: var(--rh-teal);
    padding: 2px 7px;
    border-radius: 3px;
    width: fit-content;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}
.rh-kpi-label[b-gbhehvlo9p] {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--rh-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 4px;
}
.rh-kpi-value[b-gbhehvlo9p] {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--rh-text);
    margin-bottom: 4px;
}
.rh-kpi-split[b-gbhehvlo9p] { display: flex; gap: 8px; align-items: baseline; }
.rh-kpi-divider[b-gbhehvlo9p] { font-size: 0.75rem; color: var(--rh-text-light); }

.rh-kpi-trend[b-gbhehvlo9p] {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}
.rh-kpi-trend-split[b-gbhehvlo9p] { gap: 10px; }

.rh-trend-up[b-gbhehvlo9p] { color: var(--rh-green-dark); }
.rh-trend-down[b-gbhehvlo9p] { color: var(--rh-red); }
.rh-trend-neutral[b-gbhehvlo9p] { color: var(--rh-text-light); }

/* ═══════════ TWO-COLUMN LAYOUT ═══════════ */
.rh-two-col[b-gbhehvlo9p] {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

/* ═══════════ TABLE PANEL ═══════════ */
.rh-table-panel[b-gbhehvlo9p] {
    background: var(--rh-card);
    border: 1px solid var(--rh-border);
    border-radius: var(--rh-radius);
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

.rh-panel-header[b-gbhehvlo9p] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.85rem 1.25rem;
    border-bottom: 1px solid var(--rh-border);
}
.rh-panel-header h3[b-gbhehvlo9p] {
    font-size: 0.92rem;
    font-weight: 600;
    color: #495057;
    margin: 0;
}

.rh-toolbar[b-gbhehvlo9p] { display: flex; gap: 8px; align-items: center; }

.rh-toolbar-btn[b-gbhehvlo9p] {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    border: 1px solid var(--rh-border);
    background: white;
    border-radius: 6px;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--rh-text-muted);
    cursor: pointer;
    font-family: inherit;
    transition: all 0.15s;
}
.rh-toolbar-btn:hover[b-gbhehvlo9p] { border-color: var(--rh-teal); color: var(--rh-teal); }

.rh-btn-export[b-gbhehvlo9p] {
    background: #1d6f42;
    color: white !important;
    border-color: #1d6f42 !important;
}
.rh-btn-export:hover[b-gbhehvlo9p] { background: #165a36 !important; }

/* Toggle group (level selector) */
.rh-toggle-group[b-gbhehvlo9p] {
    display: flex;
    gap: 2px;
    background: #f0f2f5;
    padding: 2px;
    border-radius: 6px;
}
.rh-toggle-btn[b-gbhehvlo9p] {
    padding: 5px 10px;
    border: none;
    background: transparent;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--rh-text-muted);
    cursor: pointer;
    font-family: inherit;
    transition: all 0.15s;
}
.rh-toggle-btn.active[b-gbhehvlo9p] {
    background: white;
    color: var(--rh-teal);
    font-weight: 600;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

/* Column group chips */
.rh-col-group-bar-inline[b-gbhehvlo9p] {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}
.rh-col-group-chip[b-gbhehvlo9p] {
    padding: 4px 10px;
    border: 1px solid var(--rh-border);
    border-radius: 14px;
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--rh-text-muted);
    cursor: pointer;
    font-family: inherit;
    transition: all 0.15s;
    background: white;
}
.rh-col-group-chip.active[b-gbhehvlo9p] {
    background: var(--rh-teal-light);
    border-color: var(--rh-teal);
    color: var(--rh-teal);
    font-weight: 600;
}
.rh-col-group-chip:disabled[b-gbhehvlo9p] { opacity: 0.5; cursor: not-allowed; }

/* Table footer */
.rh-table-footer[b-gbhehvlo9p] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.65rem 1.25rem;
    border-top: 1px solid var(--rh-border);
    font-size: 0.78rem;
    color: var(--rh-text-muted);
}
.rh-row-click-hint[b-gbhehvlo9p] {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--rh-teal);
    background: rgba(0,131,143,0.08);
    padding: 5px 10px;
    border-radius: 14px;
    border: 1px solid rgba(0,131,143,0.15);
}

/* ═══════════ SEARCH BAR ═══════════ */
.rh-search-bar[b-gbhehvlo9p] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0.65rem 1.25rem;
    border-bottom: 1px solid var(--rh-border-light);
    background: #fcfcfd;
}
.rh-search-bar svg[b-gbhehvlo9p] { color: var(--rh-text-light); flex-shrink: 0; }
.rh-search-input[b-gbhehvlo9p] {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-size: 0.85rem;
    font-family: inherit;
    color: var(--rh-text);
}
.rh-search-input[b-gbhehvlo9p]::placeholder { color: var(--rh-text-light); }
.rh-search-clear[b-gbhehvlo9p] {
    border: none;
    background: transparent;
    color: var(--rh-text-light);
    font-size: 0.85rem;
    cursor: pointer;
    padding: 2px 6px;
    border-radius: 4px;
    transition: all 0.15s;
}
.rh-search-clear:hover[b-gbhehvlo9p] { background: var(--rh-border-light); color: var(--rh-text-muted); }

/* ═══════════ NATIVE DATA TABLE ═══════════ */
.rh-table-wrap[b-gbhehvlo9p] {
    overflow-x: auto;
    padding: 0 0.5rem;
}
.rh-data-table[b-gbhehvlo9p] {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.82rem;
}
.rh-data-table thead th[b-gbhehvlo9p] {
    background: #f8f9fa;
    color: #495057;
    font-weight: 600;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    padding: 0.6rem 0.5rem;
    border-bottom: 2px solid var(--rh-border);
    text-align: left;
    white-space: nowrap;
    cursor: pointer;
    user-select: none;
    transition: background 0.15s;
}
.rh-data-table thead th:hover[b-gbhehvlo9p] { background: #eef0f3; }
.rh-data-table tbody td[b-gbhehvlo9p] {
    padding: 0.55rem 0.5rem;
    border-bottom: 1px solid #f5f5f5;
}

/* Column widths */
.col-id[b-gbhehvlo9p] { width: 60px; min-width: 60px; }
.col-xs[b-gbhehvlo9p] { width: 65px; min-width: 65px; text-align: center; }
.col-sm[b-gbhehvlo9p] { width: 100px; min-width: 100px; }
.col-name[b-gbhehvlo9p] { min-width: 160px; font-weight: 500; }
.col-qual[b-gbhehvlo9p] {
    background: rgba(44, 123, 229, 0.04);
}

.row-selected .col-qual[b-gbhehvlo9p] {
    background: transparent;
}

/* Row states */
.row-clickable[b-gbhehvlo9p] { cursor: pointer; transition: background 0.15s; }
.row-clickable:hover[b-gbhehvlo9p] { background: rgba(0, 131, 143, 0.04); }
.row-selected[b-gbhehvlo9p] {
    background: rgba(0, 131, 143, 0.1) !important;
    border-left: 3px solid var(--rh-teal);
}
.row-selected td:first-child[b-gbhehvlo9p] { padding-left: calc(0.5rem - 3px); }

/* Sort icons */
.sort-icon[b-gbhehvlo9p] { font-size: 0.65rem; opacity: 0.3; margin-left: 3px; }
.sort-icon.active[b-gbhehvlo9p] { opacity: 1; color: var(--rh-teal); }

/* ═══════════ PAGINATION ═══════════ */
.rh-pagination[b-gbhehvlo9p] { display: flex; align-items: center; gap: 4px; }
.rh-page-btn[b-gbhehvlo9p] {
    padding: 4px 8px;
    border: 1px solid var(--rh-border);
    background: white;
    border-radius: 4px;
    font-size: 0.78rem;
    cursor: pointer;
    transition: all 0.15s;
    font-family: inherit;
    color: var(--rh-text-muted);
}
.rh-page-btn:hover:not(:disabled)[b-gbhehvlo9p] { border-color: var(--rh-teal); color: var(--rh-teal); }
.rh-page-btn:disabled[b-gbhehvlo9p] { opacity: 0.3; cursor: not-allowed; }
.rh-page-info[b-gbhehvlo9p] {
    font-size: 0.78rem;
    color: var(--rh-text-muted);
    padding: 0 6px;
    white-space: nowrap;
}
.rh-filter-tag[b-gbhehvlo9p] {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 600;
    background: var(--rh-teal-light);
    color: var(--rh-teal);
    padding: 1px 6px;
    border-radius: 3px;
    margin-left: 4px;
    vertical-align: middle;
}

/* ═══════════ EMBED NOTE (Indicators, Exams, School) ═══════════ */
.rh-embed-note[b-gbhehvlo9p] {
    background: var(--rh-card);
    border: 2px dashed var(--rh-border);
    border-radius: var(--rh-radius);
    padding: 3rem;
    text-align: center;
    color: var(--rh-text-muted);
}
.rh-embed-icon[b-gbhehvlo9p] { margin-bottom: 0.75rem; display: block; color: var(--rh-teal); }
.rh-embed-title[b-gbhehvlo9p] { font-size: 1rem; font-weight: 600; color: var(--rh-text); margin-bottom: 0.4rem; }
.rh-embed-desc[b-gbhehvlo9p] { font-size: 0.85rem; line-height: 1.6; max-width: 500px; margin: 0 auto; }

.rh-link-btn[b-gbhehvlo9p] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 1rem;
    padding: 10px 24px;
    background: var(--rh-teal);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.15s;
}
.rh-link-btn:hover[b-gbhehvlo9p] { background: #006a75; color: white; }

/* ═══════════ CHARTS GRID (School Profile) ═══════════ */

/* ── Chart Grid: 2-column responsive ── */
.rh-charts-grid[b-gbhehvlo9p] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1rem;
}

@media (max-width: 900px) {
    .rh-charts-grid[b-gbhehvlo9p] {
        grid-template-columns: 1fr;
    }
}

/* ── Individual Chart Card ── */
.rh-chart-card[b-gbhehvlo9p] {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 1.25rem;
    transition: box-shadow 0.15s ease;
}

    .rh-chart-card:hover[b-gbhehvlo9p] {
        box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    }

.rh-chart-header[b-gbhehvlo9p] {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #f3f4f6;
}

    .rh-chart-header h4[b-gbhehvlo9p] {
        margin: 0;
        font-size: 0.9rem;
        font-weight: 600;
        color: #1f2937;
    }

.rh-chart-subtitle[b-gbhehvlo9p] {
    font-size: 0.78rem;
    color: #9ca3af;
    font-weight: 400;
}

/* ── Canvas Container — fixed height for consistent layout ── */
.rh-chart-container[b-gbhehvlo9p] {
    position: relative;
    height: 280px;
    width: 100%;
}

    .rh-chart-container canvas[b-gbhehvlo9p] {
        width: 100% !important;
        height: 100% !important;
    }

/* ── KPI sub-line (F: xx · M: xx under the main value) ── */
.rh-kpi-sub[b-gbhehvlo9p] {
    font-size: 0.78rem;
    color: #9ca3af;
    margin-top: 2px;
    font-weight: 400;
}


/* ═══════════ LOADING & EMPTY STATES ═══════════ */
.rh-loading[b-gbhehvlo9p] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 3rem;
    color: var(--rh-text-muted);
    font-size: 0.85rem;
}
.rh-spinner[b-gbhehvlo9p] {
    width: 28px;
    height: 28px;
    border: 3px solid var(--rh-border);
    border-top: 3px solid var(--rh-teal);
    border-radius: 50%;
    animation: rh-spin-b-gbhehvlo9p 0.8s linear infinite;
}
@keyframes rh-spin-b-gbhehvlo9p { to { transform: rotate(360deg); } }

.rh-empty-state[b-gbhehvlo9p] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 3rem;
    color: var(--rh-text-light);
    font-size: 0.85rem;
}

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 1100px) {
    .rh-two-col[b-gbhehvlo9p] { grid-template-columns: 1fr; }
    .rh-charts-grid[b-gbhehvlo9p] { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .rh-header[b-gbhehvlo9p] { flex-direction: column; gap: 1rem; }
    .rh-tab-bar[b-gbhehvlo9p] { width: 100%; overflow-x: auto; }
    .rh-kpi-row[b-gbhehvlo9p] { grid-template-columns: 1fr 1fr; }
    .rh-panel-header[b-gbhehvlo9p] { flex-direction: column; gap: 0.5rem; align-items: flex-start; }
    .rh-data-table[b-gbhehvlo9p] { font-size: 0.75rem; }
    .rh-data-table thead th[b-gbhehvlo9p] { font-size: 0.65rem; padding: 0.4rem 0.4rem; }
    .rh-data-table tbody td[b-gbhehvlo9p] { padding: 0.4rem 0.4rem; }
    .rh-table-footer[b-gbhehvlo9p] { flex-direction: column; gap: 0.5rem; align-items: flex-start; }
}
/* /Components/Pages/Reporting/StudentProfilePanel.razor.rz.scp.css */
/* ============================================================================
   Student Profile Panel — Scoped CSS (Enhanced)
   Location: TemisV2_Auth.Client/Components/StudentProfilePanel.razor.css
   ============================================================================
   Design intent: The profile panel is the "reward" for clicking a row.
   It should feel noticeably richer than the data table beside it —
   but still belong to the same design system.
   ============================================================================ */

/* ═══════════ PANEL CONTAINER ═══════════ */
.rh-profile-panel[b-o92pkfh1ni] {
    background: #ffffff;
    border: 1px solid #e2e6ea;
    border-left: 3px solid #00838f;
    border-radius: 12px;
    overflow: hidden;
    min-height: 300px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.25s;
}
.rh-profile-panel:hover[b-o92pkfh1ni] {
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}
.rh-profile-empty[b-o92pkfh1ni] {
    display: flex;
    align-items: center;
    justify-content: center;
}

.rh-profile-edit-link[b-o92pkfh1ni] {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--teal, #0d9488);
    text-decoration: none;
    padding: 4px 10px;
    border: 1px solid var(--teal, #0d9488);
    border-radius: 5px;
    transition: all 0.15s ease;
}

    .rh-profile-edit-link:hover[b-o92pkfh1ni] {
        background: var(--teal, #0d9488);
        color: #fff;
    }

    .rh-profile-edit-link svg[b-o92pkfh1ni] {
        flex-shrink: 0;
    }

/* ═══════════ PLACEHOLDER & LOADING ═══════════ */
.rh-profile-placeholder[b-o92pkfh1ni],
.rh-profile-loading[b-o92pkfh1ni] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #b0b8c1;
    padding: 3.5rem 2rem;
    text-align: center;
    font-size: 0.84rem;
}
.rh-profile-ph-icon[b-o92pkfh1ni] {
    font-size: 2.8rem;
    opacity: 0.2;
}

.rh-spinner[b-o92pkfh1ni] {
    width: 28px;
    height: 28px;
    border: 3px solid #e9ecef;
    border-top: 3px solid #00838f;
    border-radius: 50%;
    animation: rh-spin-b-o92pkfh1ni 0.8s linear infinite;
}
@keyframes rh-spin-b-o92pkfh1ni { to { transform: rotate(360deg); } }

/* ═══════════ HEADER ═══════════ */
.rh-profile-header[b-o92pkfh1ni] {
    padding: 1.25rem 1.3rem;
    background: linear-gradient(145deg, #edf7f8 0%, #f2f6fa 60%, #f7f9fc 100%);
    border-bottom: 2px solid #d0ecee;
    display: flex;
    align-items: center;
    gap: 14px;
}

.rh-profile-avatar[b-o92pkfh1ni] {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    font-weight: 700;
    flex-shrink: 0;
    letter-spacing: 0.5px;
}
/* Gradient avatar — white text on teal */
.rh-avatar-teal[b-o92pkfh1ni] {
    background: linear-gradient(140deg, #00838f 0%, #26a8b5 100%);
    color: #ffffff;
    box-shadow: 0 3px 8px rgba(0, 131, 143, 0.22);
}

.rh-profile-name[b-o92pkfh1ni] {
    font-weight: 700;
    font-size: 1rem;
    color: #1a1a2e;
    letter-spacing: -0.01em;
    line-height: 1.3;
}
.rh-profile-sub[b-o92pkfh1ni] {
    font-size: 0.76rem;
    color: #8a919a;
    margin-top: 2px;
    line-height: 1.35;
}

/* ═══════════ SECTIONS ═══════════ */
.rh-profile-section[b-o92pkfh1ni] {
    padding: 1rem 1.3rem;
    border-bottom: 1px solid #f0f2f4;
}
.rh-profile-section-last[b-o92pkfh1ni] {
    border-bottom: none;
}

.rh-profile-section-title[b-o92pkfh1ni] {
    font-size: 0.67rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: #00838f;
    margin-bottom: 10px;
    padding-bottom: 7px;
    border-bottom: 2px solid #daf0f2;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ═══════════ FIELD ROWS ═══════════ */
.rh-profile-field[b-o92pkfh1ni] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 8px;
    margin: 0 -8px;
    font-size: 0.82rem;
    border-radius: 5px;
    transition: background 0.15s;
}
.rh-profile-field:nth-child(even)[b-o92pkfh1ni] {
    background: #f9fafb;
}
.rh-profile-field:hover[b-o92pkfh1ni] {
    background: #eff5f5;
}

.rh-field-label[b-o92pkfh1ni] {
    color: #6c757d;
    font-size: 0.8rem;
}
.rh-field-value[b-o92pkfh1ni] {
    font-weight: 600;
    text-align: right;
    color: #1a1a2e;
}
.rh-field-note[b-o92pkfh1ni] {
    color: #a0a8b1;
    font-weight: 400;
    font-size: 0.75rem;
    margin-left: 4px;
}
.rh-verified[b-o92pkfh1ni] {
    color: #0d8a60;
    font-weight: 700;
    background: #e6f7ee;
    padding: 1px 7px;
    border-radius: 10px;
    font-size: 0.76rem;
}
.rh-profile-empty-text[b-o92pkfh1ni] {
    font-size: 0.78rem;
    color: #b8bfc7;
    font-style: italic;
}

/* ═══════════ ENROLLMENT TIMELINE ═══════════ */
.rh-timeline[b-o92pkfh1ni] {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    padding: 10px 10px 10px 6px;
    background: #f6fafa;
    border-radius: 8px;
    border: 1px solid #e8f1f2;
}

/* Vertical connecting spine */
.rh-timeline[b-o92pkfh1ni]::before {
    content: '';
    position: absolute;
    left: 11.5px;
    top: 22px;
    bottom: 22px;
    width: 2px;
    background: linear-gradient(to bottom, #00838f 0%, #d0dce0 100%);
    border-radius: 1px;
}

.rh-timeline-item[b-o92pkfh1ni] {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.8rem;
    padding: 7px 8px 7px 0;
    position: relative;
    z-index: 1;
    border-radius: 5px;
    transition: background 0.15s;
}
.rh-timeline-item:hover[b-o92pkfh1ni] {
    background: rgba(0, 131, 143, 0.05);
}

/* Dots — hollow ring style with filled current */
.rh-timeline-dot[b-o92pkfh1ni] {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    flex-shrink: 0;
    border: 2.5px solid #00838f;
    background: #ffffff;
    z-index: 2;
    transition: all 0.2s;
}
.rh-timeline-dot.past[b-o92pkfh1ni] {
    border-color: #d0d5da;
    background: #ffffff;
}
/* Current year: filled with glow */
.rh-timeline-item:first-child .rh-timeline-dot:not(.past)[b-o92pkfh1ni] {
    background: #00838f;
    box-shadow: 0 0 0 3px rgba(0, 131, 143, 0.14);
}

.rh-timeline-year[b-o92pkfh1ni] {
    font-weight: 700;
    min-width: 36px;
    color: #495057;
    font-size: 0.78rem;
    font-variant-numeric: tabular-nums;
}
.rh-timeline-item:first-child .rh-timeline-year[b-o92pkfh1ni] {
    color: #00838f;
}

.rh-timeline-detail[b-o92pkfh1ni] {
    color: #3d4550;
    line-height: 1.35;
}
.rh-timeline-detail strong[b-o92pkfh1ni] {
    font-weight: 600;
    color: #1a1a2e;
}

/* ═══════════ STATUS PILLS ═══════════ */
.rh-status-pill[b-o92pkfh1ni] {
    display: inline-block;
    font-size: 0.62rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 10px;
    margin-left: 6px;
    letter-spacing: 0.3px;
    vertical-align: middle;
    line-height: 1.4;
    text-transform: capitalize;
}

.rh-status-promoted[b-o92pkfh1ni] {
    background: #e6f7ee;
    color: #1a7a45;
    border: 1px solid #c3ecd4;
}
.rh-status-new[b-o92pkfh1ni] {
    background: #fef9e7;
    color: #92750c;
    border: 1px solid #f5e6a3;
}
.rh-status-repeated[b-o92pkfh1ni] {
    background: #fef0e6;
    color: #b45309;
    border: 1px solid #fad4b5;
}
.rh-status-transferred[b-o92pkfh1ni] {
    background: #e8f0fb;
    color: #2c5ea0;
    border: 1px solid #c5d8f0;
}
.rh-status-completed[b-o92pkfh1ni] {
    background: #e0f2f3;
    color: #00696f;
    border: 1px solid #b2e0e3;
}
.rh-status-continuing[b-o92pkfh1ni] {
    background: #eef0f2;
    color: #495057;
    border: 1px solid #d5d9de;
}
.rh-status-default[b-o92pkfh1ni] {
    background: #f5f6f7;
    color: #6c757d;
    border: 1px solid #e2e5e8;
}

/* ═══════════ ASSESSMENTS ═══════════ */
.rh-assessment-phase[b-o92pkfh1ni] {
    font-size: 0.6rem;
    font-weight: 700;
    background: #e0f2f3;
    color: #00838f;
    padding: 2px 7px;
    border-radius: 10px;
    margin-left: 5px;
    vertical-align: middle;
    letter-spacing: 0.3px;
}

/* ═══════════ FUTURE BADGE ═══════════ */
.rh-future-badge[b-o92pkfh1ni] {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.57rem;
    font-weight: 700;
    color: #546e7a;
    background: #dfe3e7;
    padding: 2px 8px;
    border-radius: 10px;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

/* Future data section gets a warm slate wash */
.rh-profile-section-last[b-o92pkfh1ni] {
    border-bottom: none;
    background: #f8f9fa;
    border-top: 1px dashed #e0e4e8;
}

/* ═══════════ EXPORT BAR ═══════════ */
.rh-profile-export-bar[b-o92pkfh1ni] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.85rem 1.3rem;
    background: linear-gradient(to right, #f0f4f5, #f5f7f8);
    border-top: 2px solid #e2e8ea;
}
.rh-export-label[b-o92pkfh1ni] {
    font-size: 0.67rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #8a919a;
}
.rh-export-buttons[b-o92pkfh1ni] {
    display: flex;
    gap: 7px;
}
.rh-export-btn[b-o92pkfh1ni] {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 14px;
    border: 1px solid #e2e6ea;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.2s;
    background: #ffffff;
}
.rh-btn-pdf[b-o92pkfh1ni] {
    color: #c62828;
    border-color: #f0c0c0;
}
.rh-btn-pdf:hover[b-o92pkfh1ni] {
    background: #fef1f1;
    border-color: #c62828;
    box-shadow: 0 2px 6px rgba(198, 40, 40, 0.12);
}
.rh-btn-excel[b-o92pkfh1ni] {
    color: #1d6f42;
    border-color: #b8d8c4;
}
.rh-btn-excel:hover[b-o92pkfh1ni] {
    background: #eef7f1;
    border-color: #1d6f42;
    box-shadow: 0 2px 6px rgba(29, 111, 66, 0.12);
}

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 768px) {
    .rh-profile-section[b-o92pkfh1ni] { padding: 0.75rem 1rem; }
    .rh-profile-field[b-o92pkfh1ni] { font-size: 0.78rem; padding: 5px 6px; }
    .rh-profile-header[b-o92pkfh1ni] { padding: 1rem; }
    .rh-profile-avatar[b-o92pkfh1ni] { width: 44px; height: 44px; font-size: 1rem; }
}
/* /Components/Pages/Reporting/TeacherProfilePanel.razor.rz.scp.css */
/* ============================================================================
   Teacher Profile Panel — Scoped CSS (Enhanced)
   Location: TemisV2_Auth.Client/Components/TeacherProfilePanel.razor.css
   ============================================================================
   Design intent: Same elevated treatment as StudentProfilePanel but with
   a blue accent palette to visually distinguish Staff from Students.
   ============================================================================ */

/* ═══════════ PANEL CONTAINER ═══════════ */
.rh-profile-panel[b-rkztduetk0] {
    background: #ffffff;
    border: 1px solid #e2e6ea;
    border-left: 3px solid #2c7be5;
    border-radius: 12px;
    overflow: hidden;
    min-height: 300px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.25s;
}
.rh-profile-panel:hover[b-rkztduetk0] {
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}
.rh-profile-empty[b-rkztduetk0] {
    display: flex;
    align-items: center;
    justify-content: center;
}

.rh-profile-edit-link[b-rkztduetk0] {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--teal, #0d9488);
    text-decoration: none;
    padding: 4px 10px;
    border: 1px solid var(--teal, #0d9488);
    border-radius: 5px;
    transition: all 0.15s ease;
}

    .rh-profile-edit-link:hover[b-rkztduetk0] {
        background: var(--teal, #0d9488);
        color: #fff;
    }

    .rh-profile-edit-link svg[b-rkztduetk0] {
        flex-shrink: 0;
    }

/* ═══════════ PLACEHOLDER & LOADING ═══════════ */
.rh-profile-placeholder[b-rkztduetk0],
.rh-profile-loading[b-rkztduetk0] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #b0b8c1;
    padding: 3.5rem 2rem;
    text-align: center;
    font-size: 0.84rem;
}
.rh-profile-ph-icon[b-rkztduetk0] {
    font-size: 2.8rem;
    opacity: 0.2;
}

.rh-spinner[b-rkztduetk0] {
    width: 28px;
    height: 28px;
    border: 3px solid #e9ecef;
    border-top: 3px solid #2c7be5;
    border-radius: 50%;
    animation: rh-spin-b-rkztduetk0 0.8s linear infinite;
}
@keyframes rh-spin-b-rkztduetk0 { to { transform: rotate(360deg); } }

/* ═══════════ HEADER ═══════════ */
.rh-profile-header[b-rkztduetk0] {
    padding: 1.25rem 1.3rem;
    background: linear-gradient(145deg, #edf1fa 0%, #f2f5fb 60%, #f7f9fc 100%);
    border-bottom: 2px solid #cfdcf0;
    display: flex;
    align-items: center;
    gap: 14px;
}

.rh-profile-avatar[b-rkztduetk0] {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    font-weight: 700;
    flex-shrink: 0;
    letter-spacing: 0.5px;
}
/* Gradient avatar — white text on blue */
.rh-avatar-blue[b-rkztduetk0] {
    background: linear-gradient(140deg, #2c7be5 0%, #5a9cf0 100%);
    color: #ffffff;
    box-shadow: 0 3px 8px rgba(44, 123, 229, 0.25);
}

.rh-profile-name[b-rkztduetk0] {
    font-weight: 700;
    font-size: 1rem;
    color: #1a1a2e;
    letter-spacing: -0.01em;
    line-height: 1.3;
}
.rh-profile-sub[b-rkztduetk0] {
    font-size: 0.76rem;
    color: #8a919a;
    margin-top: 2px;
    line-height: 1.35;
}

/* ═══════════ SECTIONS ═══════════ */
.rh-profile-section[b-rkztduetk0] {
    padding: 1rem 1.3rem;
    border-bottom: 1px solid #f0f2f4;
}
.rh-profile-section-last[b-rkztduetk0] {
    border-bottom: none;
}

.rh-profile-section-title[b-rkztduetk0] {
    font-size: 0.67rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: #2c7be5;
    margin-bottom: 10px;
    padding-bottom: 7px;
    border-bottom: 2px solid #dce6f6;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ═══════════ FIELD ROWS ═══════════ */
.rh-profile-field[b-rkztduetk0] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 8px;
    margin: 0 -8px;
    font-size: 0.82rem;
    border-radius: 5px;
    transition: background 0.15s;
}
.rh-profile-field:nth-child(even)[b-rkztduetk0] {
    background: #f9fafb;
}
.rh-profile-field:hover[b-rkztduetk0] {
    background: #eff2f8;
}

.rh-field-label[b-rkztduetk0] {
    color: #6c757d;
    font-size: 0.8rem;
}
.rh-field-value[b-rkztduetk0] {
    font-weight: 600;
    text-align: right;
    color: #1a1a2e;
}
.rh-field-note[b-rkztduetk0] {
    color: #a0a8b1;
    font-weight: 400;
    font-size: 0.75rem;
    margin-left: 4px;
}
.rh-profile-empty-text[b-rkztduetk0] {
    font-size: 0.78rem;
    color: #b8bfc7;
    font-style: italic;
}

/* ═══════════ QUALIFICATIONS GRID ═══════════ */
.rh-qual-grid[b-rkztduetk0] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.rh-qual-item[b-rkztduetk0] {
    background: linear-gradient(135deg, #edf2fc 0%, #f4f7fd 100%);
    border: 1px solid #dce6f6;
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 0.78rem;
    transition: border-color 0.15s, box-shadow 0.15s;
}
.rh-qual-item:hover[b-rkztduetk0] {
    border-color: #b8cde8;
    box-shadow: 0 1px 4px rgba(44, 123, 229, 0.08);
}
.rh-qual-label[b-rkztduetk0] {
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: #7a8ba8;
    margin-bottom: 3px;
}
.rh-qual-value[b-rkztduetk0] {
    font-weight: 700;
    color: #1e5bb8;
    font-size: 0.82rem;
}

/* ═══════════ TEACHING ASSIGNMENTS TIMELINE ═══════════ */
.rh-timeline[b-rkztduetk0] {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    padding: 10px 10px 10px 6px;
    background: #f6f8fc;
    border-radius: 8px;
    border: 1px solid #e6ecf5;
}

/* Vertical connecting spine */
.rh-timeline[b-rkztduetk0]::before {
    content: '';
    position: absolute;
    left: 11.5px;
    top: 22px;
    bottom: 22px;
    width: 2px;
    background: linear-gradient(to bottom, #2c7be5 0%, #d5dce6 100%);
    border-radius: 1px;
}

.rh-timeline-item[b-rkztduetk0] {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.8rem;
    padding: 7px 8px 7px 0;
    position: relative;
    z-index: 1;
    border-radius: 5px;
    transition: background 0.15s;
}
.rh-timeline-item:hover[b-rkztduetk0] {
    background: rgba(44, 123, 229, 0.05);
}

/* Dots — hollow ring style with filled current */
.rh-timeline-dot[b-rkztduetk0] {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    flex-shrink: 0;
    border: 2.5px solid #2c7be5;
    background: #ffffff;
    z-index: 2;
    transition: all 0.2s;
}
.rh-timeline-dot.past[b-rkztduetk0] {
    border-color: #d0d5da;
    background: #ffffff;
}
/* Current year: filled with glow */
.rh-timeline-item:first-child .rh-timeline-dot:not(.past)[b-rkztduetk0] {
    background: #2c7be5;
    box-shadow: 0 0 0 3px rgba(44, 123, 229, 0.14);
}

.rh-timeline-year[b-rkztduetk0] {
    font-weight: 700;
    min-width: 36px;
    color: #495057;
    font-size: 0.78rem;
    font-variant-numeric: tabular-nums;
}
.rh-timeline-item:first-child .rh-timeline-year[b-rkztduetk0] {
    color: #2c7be5;
}

.rh-timeline-detail[b-rkztduetk0] {
    color: #3d4550;
    line-height: 1.35;
}
.rh-timeline-detail strong[b-rkztduetk0] {
    font-weight: 600;
    color: #1a1a2e;
}

/* ═══════════ CPD ACTIVITIES ═══════════ */
.rh-cpd-item[b-rkztduetk0] {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 8px;
    margin: 0 -8px;
    font-size: 0.8rem;
    border-radius: 6px;
    transition: background 0.15s;
}
.rh-cpd-item:hover[b-rkztduetk0] {
    background: #f6f8fb;
}

.rh-cpd-badge[b-rkztduetk0] {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.68rem;
    font-weight: 700;
    margin-top: 1px;
}
.rh-cpd-badge.completed[b-rkztduetk0] {
    background: #e6f7ee;
    color: #0d8a60;
    border: 1px solid #c3ecd4;
}
.rh-cpd-badge.in-progress[b-rkztduetk0] {
    background: #fef9e7;
    color: #92750c;
    border: 1px solid #f5e6a3;
}
.rh-cpd-badge.registered[b-rkztduetk0] {
    background: #e8f0fb;
    color: #2c5ea0;
    border: 1px solid #c5d8f0;
}

.rh-cpd-detail[b-rkztduetk0] { line-height: 1.4; }
.rh-cpd-title[b-rkztduetk0] {
    font-weight: 600;
    color: #1a1a2e;
    font-size: 0.8rem;
}
.rh-cpd-meta[b-rkztduetk0] {
    font-size: 0.72rem;
    color: #7a8390;
    margin-top: 1px;
}

.rh-cpd-summary[b-rkztduetk0] {
    margin-top: 10px;
    padding: 8px 12px;
    font-size: 0.75rem;
    color: #495057;
    background: #f0f4fa;
    border-radius: 6px;
    border: 1px solid #dce6f2;
}
.rh-cpd-summary strong[b-rkztduetk0] {
    color: #2c7be5;
    font-weight: 700;
}

/* ═══════════ EXPORT BAR ═══════════ */
.rh-profile-export-bar[b-rkztduetk0] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.85rem 1.3rem;
    background: linear-gradient(to right, #f0f3f6, #f5f7f8);
    border-top: 2px solid #e2e7ec;
}
.rh-export-label[b-rkztduetk0] {
    font-size: 0.67rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #8a919a;
}
.rh-export-buttons[b-rkztduetk0] {
    display: flex;
    gap: 7px;
}
.rh-export-btn[b-rkztduetk0] {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 14px;
    border: 1px solid #e2e6ea;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.2s;
    background: #ffffff;
}
.rh-btn-pdf[b-rkztduetk0] {
    color: #c62828;
    border-color: #f0c0c0;
}
.rh-btn-pdf:hover[b-rkztduetk0] {
    background: #fef1f1;
    border-color: #c62828;
    box-shadow: 0 2px 6px rgba(198, 40, 40, 0.12);
}
.rh-btn-excel[b-rkztduetk0] {
    color: #1d6f42;
    border-color: #b8d8c4;
}
.rh-btn-excel:hover[b-rkztduetk0] {
    background: #eef7f1;
    border-color: #1d6f42;
    box-shadow: 0 2px 6px rgba(29, 111, 66, 0.12);
}

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 768px) {
    .rh-profile-section[b-rkztduetk0] { padding: 0.75rem 1rem; }
    .rh-profile-field[b-rkztduetk0] { font-size: 0.78rem; padding: 5px 6px; }
    .rh-profile-header[b-rkztduetk0] { padding: 1rem; }
    .rh-profile-avatar[b-rkztduetk0] { width: 44px; height: 44px; font-size: 1rem; }
    .rh-qual-grid[b-rkztduetk0] { grid-template-columns: 1fr; }
}
/* /Components/Pages/Schools_Dashboard.razor.rz.scp.css */
/* ═══════════════════════════════════════════
   TEMIS Dashboard — Scoped Styles (v2.91)
   Consolidated from ~600 lines → ~350
   ═══════════════════════════════════════════ */

/* ── Page wrapper ── */
.page-dashboard[b-argcjji02b] {
    --blue: #004fb9;
    --teal: #00838f;
    --green: #06D6A0;
    --purple: #8338EC;
    --amber: #f59f00;
    --coral: #e76f51;
    --text: #1a1a2e;
    --text-muted: #6c757d;
    --bg-page: #f4f7fa;
    --bg-card: #ffffff;
    --border: #e9ecef;
    --radius: 10px;
    --shadow: none;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text);
    padding: 1.25rem;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

/* ── Accent utilities ── */
.accent-blue[b-argcjji02b] {
    color: var(--blue);
}

.accent-green[b-argcjji02b] {
    color: var(--green);
}

.accent-purple[b-argcjji02b] {
    color: var(--purple);
}

.fw-600[b-argcjji02b] {
    font-weight: 600;
}

/* ═══════════ WELCOME BANNER ═══════════ */
.welcome-banner[b-argcjji02b] {
    background: #f8fafe;
    border-left: 4px solid var(--blue);
    border-radius: 8px;
    border: 1px solid var(--border);
    border-left: 4px solid var(--blue);
    padding: 1.25rem 1.5rem;
    margin-bottom: 1rem;
}

.welcome-grid[b-argcjji02b] {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 2rem;
    align-items: flex-start;
}

.welcome-title[b-argcjji02b] {
    color: var(--blue);
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0 0 0.75rem;
    line-height: 1.3;
}

.welcome-text[b-argcjji02b] {
    color: #4a4a4a;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 0.75rem;
}

.enrolment-banner[b-argcjji02b] {
    background: rgba(0, 131, 143, 0.08);
    border-left: 3px solid var(--teal);
    color: #495057;
    padding: 10px 16px;
    border-radius: 0 6px 6px 0;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
}

    .enrolment-banner i[b-argcjji02b] {
        color: var(--teal);
        flex-shrink: 0;
    }

/* ── School selector / CTA column ── */
.selector-column[b-argcjji02b] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.selector-header[b-argcjji02b] {
    font-weight: 600;
    color: #495057;
    font-size: 0.9rem;
}

.selector-body[b-argcjji02b] {
    width: 100%;
}

.selector-footer[b-argcjji02b] {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-style: italic;
    text-align: center;
}

.cta-column[b-argcjji02b] {
    text-align: center;
}

.cta-text[b-argcjji02b] {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.cta-buttons[b-argcjji02b] {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.cta-btn[b-argcjji02b] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0.65rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.cta-login[b-argcjji02b] {
    background: var(--blue);
    color: white;
}

    .cta-login:hover[b-argcjji02b] {
        background: #2468c7;
        color: white;
    }

.cta-register[b-argcjji02b] {
    background: #f8f9fa;
    color: #495057;
    border: 1px solid var(--border);
}

    .cta-register:hover[b-argcjji02b] {
        background: var(--border);
        color: #495057;
    }

/* ═══════════ LOADING STATE ═══════════ */
.loading-bar[b-argcjji02b] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 2rem;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.loading-pulse[b-argcjji02b] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--teal);
    animation: pulse-b-argcjji02b 1.2s ease-in-out infinite;
}

@keyframes pulse-b-argcjji02b {
    0%, 100% {
        opacity: 0.3;
        transform: scale(0.8);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* ═══════════ DASHBOARD GRID ═══════════ */
.dashboard-grid[b-argcjji02b] {
    display: grid;
    grid-template-columns: 1fr 1fr 280px;
    gap: 1rem;
    margin-bottom: 1rem;
}

.bottom-row[b-argcjji02b] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

/* ── Card base ── */
.dash-card[b-argcjji02b] {
    background: var(--bg-card);
    border-radius: 8px;
    border: 1px solid var(--border);
    border-top: 4px solid var(--blue);
    padding: 1rem;
    min-width: 0;
}

.card-school-detail[b-argcjji02b] {
    border-top-color: var(--green);
}

.card-wide[b-argcjji02b] {
    grid-column: span 2;
    border-top-color: var(--teal);
    padding: 0;
}

.card-indicators[b-argcjji02b] {
    border-top-color: var(--green);
}

    .card-indicators .card-header-row[b-argcjji02b] {
        border-bottom: 2px solid #f1f3f5;
        margin-bottom: 0.5rem;
    }

.card-actions[b-argcjji02b] {
    border-top-color: transparent;
    border: 1px solid var(--border);
}

.card-chart-bar[b-argcjji02b] {
    border-top-color: var(--teal);
    flex: 2;
}

.card-chart-pie[b-argcjji02b] {
    border-top-color: var(--amber);
    flex: 1;
}

.card-header-row[b-argcjji02b] {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    padding: 1rem 1.25rem 0.75rem;
}

    .card-header-row h3[b-argcjji02b] {
        font-size: 1rem;
        font-weight: 600;
        margin: 0;
        color: #495057;
    }

.card-title[b-argcjji02b] {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border);
}

/* ── Quick Stats Panel ── */
.card-stats[b-argcjji02b] {
    border-top-color: var(--purple);
    display: flex;
    flex-direction: column;
    gap: 0;
}

.quick-stat[b-argcjji02b] {
    padding: 0.4rem 0;
    border-bottom: 1px solid #f5f5f5;
    text-align: center;
}

    .quick-stat:last-child[b-argcjji02b] {
        border-bottom: none;
    }

.qs-value[b-argcjji02b] {
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.2;
}

.qs-label[b-argcjji02b] {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-top: 2px;
}

/* ── Stat rows (school detail cards) ── */
.stat-row[b-argcjji02b] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0;
    border-bottom: 1px solid #f5f5f5;
}

    .stat-row:last-child[b-argcjji02b] {
        border-bottom: none;
    }

.stat-label[b-argcjji02b] {
    font-weight: 500;
    color: var(--text-muted);
    font-size: 0.88rem;
}

.stat-val[b-argcjji02b] {
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--text);
}

.stat-detail[b-argcjji02b] {
    font-size: 0.8rem;
    color: var(--text-muted);
    padding-left: 0;
    margin-top: -4px;
    margin-bottom: 4px;
}

/* ═══════════ ISLAND SUMMARY TABLE ═══════════ */
.table-wrap[b-argcjji02b] {
    overflow-x: auto;
    padding: 0 0.5rem 1rem;
}

.summary-table[b-argcjji02b] {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
}

    .summary-table thead th[b-argcjji02b] {
        background: #f8f9fa;
        color: #495057;
        font-weight: 600;
        text-transform: uppercase;
        font-size: 0.72rem;
        letter-spacing: 0.5px;
        padding: 0.75rem 0.6rem;
        border-bottom: 2px solid var(--border);
        white-space: nowrap;
    }

    .summary-table tbody td[b-argcjji02b] {
        padding: 0.65rem 0.6rem;
        border-bottom: 1px solid #f5f5f5;
    }

    .summary-table tbody tr:hover[b-argcjji02b] {
        background: #fafbfc;
    }

    .summary-table tfoot .totals-row td[b-argcjji02b] {
        font-weight: 700;
        padding: 0.75rem 0.6rem;
        border-top: 2px solid var(--border);
        background: #f8f9fa;
        color: var(--text);
    }

.col-island[b-argcjji02b] {
    text-align: left;
    min-width: 100px;
}

.col-num[b-argcjji02b] {
    text-align: center;
}

/* ═══════════ INDICATOR CARDS ═══════════ */
.indicator-card[b-argcjji02b] {
    padding: 12px 14px;
    border-radius: 8px;
    border-left: 4px solid;
    background: white;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
    margin-bottom: 8px;
    transition: transform 0.2s;
}

    .indicator-card:hover[b-argcjji02b] {
        transform: translateY(-1px);
    }

    .indicator-card.ecce[b-argcjji02b] {
        background: linear-gradient(135deg, #fff8e1, #ffecb3);
        border-left-color: var(--amber);
    }

    .indicator-card.primary[b-argcjji02b] {
        background: linear-gradient(135deg, #e3f2fd, #bbdefb);
        border-left-color: var(--blue);
    }

    .indicator-card.secondary[b-argcjji02b] {
        background: linear-gradient(135deg, #f3e5f5, #e1bee7);
        border-left-color: var(--purple);
    }

.indicator-card-header[b-argcjji02b] {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(0,0,0,0.08)
}

.level-badge[b-argcjji02b] {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 3px 8px;
    border-radius: 3px;
    color: white;
}

    .level-badge.ecce[b-argcjji02b] {
        background: var(--amber);
    }

    .level-badge.primary[b-argcjji02b] {
        background: #1976d2;
    }

    .level-badge.secondary[b-argcjji02b] {
        background: #7b1fa2;
    }

.level-subtitle[b-argcjji02b] {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.indicator-stats[b-argcjji02b] {
    display: flex;
    justify-content: space-between;
    gap: 6px;
}

.indicator-stat[b-argcjji02b] {
    text-align: center;
    flex: 1;
}

.stat-val-sm[b-argcjji02b] {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
}

.stat-lbl-sm[b-argcjji02b] {
    display: block;
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-top: 1px;
}

.indicator-totals[b-argcjji02b] {
    background: #f8f9fa;
    padding: 12px;
    border-radius: 8px;
    margin-top: 8px;
}

.total-row[b-argcjji02b] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
    font-size: 0.85rem;
    color: #495057;
    border-bottom: 1px solid #dee2e6;
}

    .total-row:last-child[b-argcjji02b] {
        border-bottom: none;
    }

    .total-row strong[b-argcjji02b] {
        color: var(--text);
        font-size: 0.95rem;
    }

    .total-row.highlight[b-argcjji02b] {
        background: rgba(6, 214, 160, 0.12);
        margin: 6px -8px -6px;
        padding: 8px;
        border-radius: 6px;
        border-bottom: none;
    }

        .total-row.highlight strong[b-argcjji02b] {
            color: #05a77d;
            font-size: 1rem;
        }

.indicators-link[b-argcjji02b] {
    margin-top: 10px;
    padding: 0.6rem 0.8rem;
    background: var(--green);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.88rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.2s;
}

    .indicators-link:hover[b-argcjji02b] {
        background: #05c493;
        color: white;
    }

/* ═══════════ ACTIONS SIDEBAR ═══════════ */
.card-actions[b-argcjji02b] {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.actions-title[b-argcjji02b] {
    font-size: 1.05rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f1f3f5;
}

.action-btn[b-argcjji02b] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 16px;
    border-radius: 7px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.88rem;
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

    .action-btn:hover[b-argcjji02b] {
        transform: translateY(-1px);
        box-shadow: 0 3px 8px rgba(0,0,0,0.12);
    }

    .action-btn i[b-argcjji02b] {
        font-size: 1rem;
    }

.btn-students[b-argcjji02b] {
    background: #3498db;
}

.btn-staff[b-argcjji02b] {
    background: #2ecc71;
}

.btn-sgca[b-argcjji02b] {
    background: #9b59b6;
}

.btn-tgca[b-argcjji02b] {
    background: #f39c12;
}

.btn-export[b-argcjji02b], .btn-export-chart[b-argcjji02b] {
    width: fit-content;
    max-width: 280px;
    padding: 10px 20px;
}

.actions-divider[b-argcjji02b] {
    border: none;
    border-top: 1px solid #e9ecef;
    margin: 2px 0;
}

.export-item[b-argcjji02b] {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px solid #f5f5f5;
}

    .export-item:last-child[b-argcjji02b] {
        border-bottom: none;
    }

    .export-item .action-btn[b-argcjji02b] {
        flex-shrink: 0;
        width: 220px;
        min-width: 220px;
        padding: 10px 16px;
        font-size: 0.82rem;
        text-align: left;
        justify-content: flex-start;
    }

    .export-item .btn-export[b-argcjji02b] {
        background: #1d6f42;
        color: white;
    }

    .export-item .btn-export-chart[b-argcjji02b] {
        background: var(--teal);
        color: white;
    }

.export-desc[b-argcjji02b] {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
    padding-top: 4px;
}

.export-item .btn-students[b-argcjji02b] {
    background: #3498db;
    color: white;
}

.export-item .btn-staff[b-argcjji02b] {
    background: #2ecc71;
    color: white;
}

.export-item .btn-sgca[b-argcjji02b] {
    background: #9b59b6;
    color: white;
}

.export-item .btn-tgca[b-argcjji02b] {
    background: #f39c12;
    color: white;
}

@media (max-width: 768px) {
    .export-item[b-argcjji02b] {
        flex-direction: column;
        gap: 4px;
    }

        .export-item .action-btn[b-argcjji02b] {
            width: 100%;
            min-width: unset;
            padding: 10px 16px;
            height: auto;
            min-height: unset;
            max-height:43px;
        }


    .export-desc[b-argcjji02b] {
        font-size: 1rem;
        padding: 0;
    }
}

/* ═══════════ CHARTS ROW ═══════════ */
.charts-row[b-argcjji02b] {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1rem;
}

.chart-container[b-argcjji02b] {
    padding: 1rem 1.25rem 1.25rem;
    position: relative;
    min-height: 320px;
}

.chart-export-btn[b-argcjji02b] {
    margin-left: auto;
    padding: 5px 8px;
    border: 1px solid var(--border);
    background: white;
    border-radius: 6px;
    cursor: pointer;
    color: var(--text-muted);
    transition: all 0.2s;
    display: flex;
    align-items: center;
}

    .chart-export-btn:hover[b-argcjji02b] {
        color: var(--teal);
        border-color: var(--teal);
        background: rgba(0, 131, 143, 0.05);
    }

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 1200px) {
    .dashboard-grid[b-argcjji02b] {
        grid-template-columns: 1fr 1fr;
    }

    .card-wide[b-argcjji02b] {
        grid-column: span 2;
    }

    .card-actions[b-argcjji02b], .card-stats[b-argcjji02b] {
        grid-column: span 1;
    }

    .charts-row[b-argcjji02b] {
        flex-direction: column;
    }

    .action-btn[b-argcjji02b] {
        flex: 1 1 180px;
    }
}

@media (max-width: 768px) {
    .page-dashboard[b-argcjji02b] {
        padding: 0.5rem;
    }

    .welcome-banner[b-argcjji02b] {
        padding: 0.75rem 1rem;
    }

    .welcome-title[b-argcjji02b] {
        font-size: 1.15rem;
    }

    .welcome-text[b-argcjji02b] {
        font-size: 0.88rem;
    }

    .welcome-grid[b-argcjji02b] {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .dashboard-grid[b-argcjji02b] {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .card-wide[b-argcjji02b] {
        grid-column: span 1;
    }

    .bottom-row[b-argcjji02b] {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .charts-row[b-argcjji02b] {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .dash-card[b-argcjji02b] {
        padding: 0.75rem;
        border-radius: 6px;
    }

    .chart-container[b-argcjji02b] {
        padding: 0.5rem;
        min-height: 250px;
    }

    .card-header-row[b-argcjji02b] {
        padding: 0.75rem 0.75rem 0.5rem;
    }

        .card-header-row h3[b-argcjji02b] {
            font-size: 0.9rem;
        }

    .stat-row[b-argcjji02b] {
        padding: 0.4rem 0;
    }

    .stat-val[b-argcjji02b] {
        font-size: 0.95rem;
    }

    .enrolment-banner[b-argcjji02b] {
        flex-direction: column;
        text-align: center;
        gap: 6px;
    }

    .summary-table[b-argcjji02b] {
        font-size: 0.78rem;
    }

        .summary-table thead th[b-argcjji02b] {
            font-size: 0.65rem;
            padding: 0.5rem 0.4rem;
        }

        .summary-table tbody td[b-argcjji02b] {
            padding: 0.45rem 0.4rem;
        }

    .actions-title[b-argcjji02b] {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }

    .qs-value[b-argcjji02b] {
        font-size: 1.2rem;
    }

    .qs-label[b-argcjji02b] {
        font-size: 0.65rem;
    }

    .quick-stat[b-argcjji02b] {
        padding: 0.5rem 0;
    }
}

@media (max-width: 1068px) {
    .hide-sm[b-argcjji02b] {
        display: none;
    }
}

/* ═══════════ YEAR SELECTOR ═══════════ */
.year-selector-row[b-argcjji02b] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.year-label[b-argcjji02b] {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-right: 4px;
}

.year-pill[b-argcjji02b] {
    padding: 5px 14px;
    border-radius: 20px;
    border: 1px solid var(--border);
    background: white;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

    .year-pill:hover[b-argcjji02b] {
        border-color: var(--blue);
        color: var(--blue);
    }

    .year-pill.active[b-argcjji02b] {
        background: var(--blue);
        border-color: var(--blue);
        color: white;
        font-weight: 600;
    }

.year-export-btn[b-argcjji02b] {
    margin-left: auto;
    padding: 6px 14px !important;
    font-size: 0.82rem !important;
    background: #1d6f42;
}
/* /Components/Pages/UserAdmin.razor.rz.scp.css */

.welcome-container[b-xqthl627b1] {
    background-color: #f8f9fa;
    border-left: 3px solid #004fb9;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Default: Side-by-side layout (flexbox) */
.welcome-grid[b-xqthl627b1] {
    display: flex;
    gap: 20px;
    align-items: flex-start; /* Aligns content to the top */
}

.welcome-content[b-xqthl627b1] {
    flex: 1; /* Takes remaining space */
}

.dropdown-column[b-xqthl627b1] {
    grid-column: 2;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.welcome-title[b-xqthl627b1] {
    color: #004fb9;
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 1rem;
    font-weight: 600;
}

.welcome-text[b-xqthl627b1] {
    color: #4a4a4a;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Stack vertically on screens ≤ 1024px */
@media (max-width: 1024px) {
    .welcome-grid[b-xqthl627b1] {
        flex-direction: column; /* Stacks children vertically */
    }

    .video-player-section[b-xqthl627b1] {
        max-width: 100%; /* Full width on small screens */
        margin-top: 20px; /* Adds space between text and video */
    }
}

/* User Admin Dashboard Container */
.dashboard-container[b-xqthl627b1] {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    padding: 20px;
}

/* Grid Panel Styling */
.dashboard-card[b-xqthl627b1] {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    padding: 20px;
    position: relative;
    overflow: hidden;
    border-top: 6px solid #3A86FF;
}

.dashboard-double-width[b-xqthl627b1] {
    grid-column: 1;
}

/* Grid Customization */
.dxbl-gridview[b-xqthl627b1] {
    border: none !important;
    border-radius: 8px;
}

    .dxbl-gridview .dxbl-grid-header[b-xqthl627b1] {
        background-color: #f8f9fa;
        border-bottom: 2px solid #e9ecef;
    }

    .dxbl-gridview .dxbl-grid-data-row:hover[b-xqthl627b1] {
        background-color: #f8fafc !important;
    }

/* Actions Panel */
.dashboard-actions[b-xqthl627b1] {
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-top: 6px solid #06D6A0;
}

.actions-header[b-xqthl627b1] {
    color: #2c3e50;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f1f3f5;
}

.action-button[b-xqthl627b1] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    border-radius: 8px;
    font-weight: 500;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: none;
    width: 100%;
    text-align: left;
}

    .action-button i[b-xqthl627b1] {
        font-size: 1.2rem;
        width: 20px;
        text-align: center;
    }

    .action-button:hover[b-xqthl627b1] {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

/* Button Colors */
.activate-button[b-xqthl627b1] {
    background-color: #28a745;
}

.deactivate-button[b-xqthl627b1] {
    background-color: #ffc107;
    color: #212529;
}

.reassign-button[b-xqthl627b1] {
    background-color: #007bff;
}

.export-excel-button[b-xqthl627b1] {
    background-color: #1d6f42;
}

.actions-divider[b-xqthl627b1] {
    border: none;
    border-top: 1px solid #e9ecef;
    margin: 12px 0;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .dashboard-container[b-xqthl627b1] {
        grid-template-columns: 1fr;
    }

    .dashboard-double-width[b-xqthl627b1] {
        grid-column: 1;
    }
}

@media (max-width: 768px) {
    .dashboard-card[b-xqthl627b1],
    .dashboard-actions[b-xqthl627b1] {
        padding: 15px;
    }

    .action-button[b-xqthl627b1] {
        padding: 12px 15px;
    }
}

.video-info-box h4[b-xqthl627b1] {
    margin-top: 0;
    color: #2a5885;
}

.video-container[b-xqthl627b1] {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    overflow: hidden;
}

.video-player[b-xqthl627b1] {
    width: 100%;
    height: auto;
    max-height: 400px;
    background-color: #000;
}

.video-meta[b-xqthl627b1] {
    padding: 0.75rem 1rem;
    background-color: #f8f9fa;
    border-top: 1px solid #e9ecef;
    font-size: 0.9rem;
    color: #666;
}

.video-page-content[b-xqthl627b1] {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    flex-grow: 1;
    padding-top: 15px;
}

.video-player-section[b-xqthl627b1] {
    flex: 1; /* Equal width to welcome-content */
    max-width: 455px; /* Limits video width */
}

@media (max-width: 992px) {
    .vertical-tabs-container[b-xqthl627b1] {
        flex-direction: column;
    }

    .dx-tab-panel[b-xqthl627b1] {
        flex-direction: row;
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #e9ecef;
        overflow-x: auto;
    }

    .dx-tab[b-xqthl627b1] {
        font-size: 0.9rem; /* Slightly smaller on mobile */
        padding: 0.6rem 1rem;
        white-space: nowrap; /* Prevent wrapping */
        border-left: none !important;
        border-bottom: 3px solid transparent;
    }

        .dx-tab.dx-tab-selected[b-xqthl627b1] {
            border-bottom: 3px solid #2a5885; /* Horizontal indicator on mobile */
            border-left: none !important;
        }

    .video-page-content[b-xqthl627b1] {
        flex-direction: column;
    }

    .video-info-section[b-xqthl627b1] {
        flex: 0 0 auto;
    }
}

/* /Components/Pages/UserReassignPopup.razor.rz.scp.css */
/* Popup Container */
.reassign-popup[b-9ejk1mdnse] {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Header */
.popup-header[b-9ejk1mdnse] {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    background-color: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    border-radius: 8px 8px 0 0;
}

    .popup-header h5[b-9ejk1mdnse] {
        margin: 0;
        font-weight: 600;
        color: #2c3e50;
    }

    .popup-header .icon[b-9ejk1mdnse] {
        color: #4a6baf;
        font-size: 1.2rem;
        margin-right: 10px;
    }

/* Content */
.popup-content[b-9ejk1mdnse] {
    padding: 20px;
}

.form-layout[b-9ejk1mdnse] {
    margin: 20px 0;
    width: 100%;
}

/* Form Fields - Updated for wider fields */
.wide-field[b-9ejk1mdnse] {
    width: 100%;
    min-width: 400px; /* Double the standard width */
}

.readonly-field[b-9ejk1mdnse] {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
}

.school-combobox[b-9ejk1mdnse] {
    width: 100%;
}

.ministry-checkbox[b-9ejk1mdnse] {
    margin: 8px 0;
}

/* Buttons */
.action-buttons[b-9ejk1mdnse] {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 24px;
}

.save-button[b-9ejk1mdnse] {
    background-color: #28a745;
    color: white;
    padding: 8px 20px;
    border-radius: 4px;
    border: none;
    transition: background-color 0.2s;
    min-width: 100px;
}

    .save-button:hover[b-9ejk1mdnse] {
        background-color: #218838;
    }

.cancel-button[b-9ejk1mdnse] {
    background-color: #6c757d;
    color: white;
    padding: 8px 20px;
    border-radius: 4px;
    border: none;
    transition: background-color 0.2s;
    min-width: 100px;
}

    .cancel-button:hover[b-9ejk1mdnse] {
        background-color: #5a6268;
    }

/* Form Layout Items */
[b-9ejk1mdnse] .dxfl-item {
    margin-bottom: 16px;
}

[b-9ejk1mdnse] .dxfl-caption {
    font-weight: 500;
    color: #495057;
    width: 120px; /* Fixed width for captions */
}

[b-9ejk1mdnse] .dxfl-value {
    width: calc(100% - 120px); /* Adjust value width based on caption */
}
/* /Components/Pages/Video_Reporting.razor.rz.scp.css */
body[b-9hh6rgiurr] {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #F1FAEE;
    margin: 0;
    padding: 20px;
    color: #1A1A2E;
}

/*#region Dashboard Styles */
/* CPD Action Buttons */

/* New Actions Panel */
.dashboard-actions[b-9hh6rgiurr] {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    min-height: 480px;
}

.actions-header[b-9hh6rgiurr] {
    color: #2c3e50;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f1f3f5;
}

/* Action Buttons - Aligned with Landing Page Colors */
.action-button[b-9hh6rgiurr] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-left: 4px solid;
}

    .action-button i[b-9hh6rgiurr] {
        font-size: 1.2rem;
        width: 20px;
        text-align: center;
    }

    .action-button:hover[b-9hh6rgiurr] {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }

    .action-button:active[b-9hh6rgiurr] {
        transform: translateY(0);
    }

/* Add Button - Staff Green (#2ecc71) */
.add-button[b-9hh6rgiurr] {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    border-left-color: #219653;
}

/* Edit Button - Student Blue (#3498db) */
.edit-button[b-9hh6rgiurr] {
    background: linear-gradient(135deg, #2980b9 0%, #3498db 100%);
    border-left-color: #1f6fb3;
}

/* Delete Button - Complementary Red */
.delete-button[b-9hh6rgiurr] {
    background: linear-gradient(135deg, #e74c3c 0%, #ff6b6b 100%);
    border-left-color: #c0392b;
    border-right: none;
    border-top: none;
    border-bottom: none;
}

/* Participants Button - TGCA Orange (#f39c12) */
.participants-button[b-9hh6rgiurr] {
    background: linear-gradient(135deg, #e67e22 0%, #f39c12 100%);
    border-left-color: #d35400;
}

/* External Participants Button - SGCA Purple (#9b59b6) */
.external-participants-button[b-9hh6rgiurr] {
    background: linear-gradient(135deg, #8e44ad 0%, #9b59b6 100%);
    border-left-color: #7d3c98;
}

/* Export Button - Excel Green (Darker Staff Green) */
.export-button[b-9hh6rgiurr] {
    background: linear-gradient(135deg, #219653 0%, #27ae60 100%);
    border-left-color: #1a7a48;
    border-right: none;
    border-top: none;
    border-bottom: none;
}

/* Hover Effects */
.add-button:hover[b-9hh6rgiurr] {
    background: linear-gradient(135deg, #219653 0%, #27ae60 100%);
}

.edit-button:hover[b-9hh6rgiurr] {
    background: linear-gradient(135deg, #1f6fb3 0%, #2980b9 100%);
}

.delete-button:hover[b-9hh6rgiurr] {
    background: linear-gradient(135deg, #c0392b 0%, #e74c3c 100%);
}

.participants-button:hover[b-9hh6rgiurr] {
    background: linear-gradient(135deg, #d35400 0%, #e67e22 100%);
}

.external-participants-button:hover[b-9hh6rgiurr] {
    background: linear-gradient(135deg, #7d3c98 0%, #8e44ad 100%);
}

.export-button:hover[b-9hh6rgiurr] {
    background: linear-gradient(135deg, #1a7a48 0%, #219653 100%);
}

.activate-button[b-9hh6rgiurr] {
    background-color: #28a745;
}

.deactivate-button[b-9hh6rgiurr] {
    background-color: #ffc107;
    color: #212529;
}

.reassign-button[b-9hh6rgiurr] {
    background-color: #007bff;
}

/* Icon Colors */
.fa-calendar-plus[b-9hh6rgiurr] {
    color: #d5f5e3;
}

.fa-edit[b-9hh6rgiurr] {
    color: #d6eaf8;
}

.fa-trash-alt[b-9hh6rgiurr] {
    color: #fadbd8;
}

.fa-user-friends[b-9hh6rgiurr] {
    color: #fdebd0;
}

.fa-users[b-9hh6rgiurr] {
    color: #e8daef;
}

.fa-file-excel[b-9hh6rgiurr] {
    color: #d5f5e3;
}

/*#endregion */

/*#region Welcome Message Styles */

.welcome-container[b-9hh6rgiurr] {
    background-color: #f8f9fa;
    border-left: 3px solid #004fb9;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 0.5rem;

}

.welcome-grid[b-9hh6rgiurr] {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2rem;
    align-items: flex-start;
}

.welcome-content[b-9hh6rgiurr] {
    grid-column: 1;
}

.dropdown-column[b-9hh6rgiurr] {
    grid-column: 2;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.welcome-title[b-9hh6rgiurr] {
    color: #004fb9;
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 1rem;
    font-weight: 600;
}

.welcome-text[b-9hh6rgiurr] {
    color: #4a4a4a;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.dropdown-header[b-9hh6rgiurr] {
    font-weight: 600;
    color: #495057;
    font-size: 0.95rem;
}

.dropdown-footer[b-9hh6rgiurr] {
    font-size: 0.85rem;
    color: #6c757d;
    font-style: italic;
    text-align: center;
}

.dropdown-container[b-9hh6rgiurr] {
    width: 100%;
}

.dxbs-combo-box[b-9hh6rgiurr] {
    width: 100% !important;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    padding: 8px 12px;
    background-color: white;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .welcome-grid[b-9hh6rgiurr] {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .dropdown-column[b-9hh6rgiurr] {
        grid-column: 1;
    }

    .dropdown-header[b-9hh6rgiurr] {
        text-align: center;
    }
}

.video-container[b-9hh6rgiurr] {
    background-color: #000;
    margin-bottom: 1rem;
}

.dx-toolbar[b-9hh6rgiurr] {
    padding: 0.5rem 0;
    background: #f8f9fa;
}

/*#endregion */

/*#region Video Styles */

.vertical-tabs-container[b-9hh6rgiurr] {
    width: 100%;
    flex-direction: row;
    gap: 1.5rem;
}

.dx-tab-panel[b-9hh6rgiurr] {
    flex-direction: column;
    width: 200px;
    border-right: 1px solid #e9ecef;
}

.dx-tab-page[b-9hh6rgiurr] {
    padding: 1rem;
}

.video-page-content[b-9hh6rgiurr] {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    flex-grow: 1;
    padding-top: 15px;
}

.video-player-section[b-9hh6rgiurr] {
    flex: 0 0 50%;
}

.video-info-section[b-9hh6rgiurr] {
    flex: 1;
    min-width: 0;
}

.video-info-box[b-9hh6rgiurr] {
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #2a5885;
}

.summary-block[b-9hh6rgiurr] {
    margin-bottom: 1.5rem;
}

    .summary-block h5[b-9hh6rgiurr] {
        color: #2a5885;
        margin: 0 0 0.5rem 0;
        font-size: 1rem;
    }

    .summary-block p[b-9hh6rgiurr] {
        margin: 0;
        font-size: 0.9rem;
        line-height: 1.5;
    }

/* Responsive adjustments */
@media (max-width: 992px) {
    .summary-block[b-9hh6rgiurr] {
        margin-bottom: 1rem;
    }
}

    .video-info-box h4[b-9hh6rgiurr] {
        margin-top: 0;
        color: #2a5885;
    }

.video-container[b-9hh6rgiurr] {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    overflow: hidden;
}

.video-player[b-9hh6rgiurr] {
    width: 100%;
    height: auto;
    max-height: 400px;
    background-color: #000;
}

.video-meta[b-9hh6rgiurr] {
    padding: 0.75rem 1rem;
    background-color: #f8f9fa;
    border-top: 1px solid #e9ecef;
    font-size: 0.9rem;
    color: #666;
}

.dx-tab[b-9hh6rgiurr] {
    font-size: 1rem; /* Match h5 base size */
    font-weight: 600; /* Semi-bold like h5 */
    color: #495057; /* Slightly darker than h5 for better contrast */
    padding: 0.75rem 1.25rem;
    text-transform: none; /* Remove any default capitalization */
    letter-spacing: normal;
}

    .dx-tab.dx-tab-selected[b-9hh6rgiurr] {
        color: #2a5885; /* Your accent color */
        border-left: 3px solid #2a5885; /* Vertical indicator */
        background-color: #f8f9fa; /* Light background */
    }

@media (max-width: 992px) {
    .vertical-tabs-container[b-9hh6rgiurr] {
        flex-direction: column;
    }

    .dx-tab-panel[b-9hh6rgiurr] {
        flex-direction: row;
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #e9ecef;
        overflow-x: auto;
    }

    .dx-tab[b-9hh6rgiurr] {
        font-size: 0.9rem; /* Slightly smaller on mobile */
        padding: 0.6rem 1rem;
        white-space: nowrap; /* Prevent wrapping */
        border-left: none !important;
        border-bottom: 3px solid transparent;
    }

        .dx-tab.dx-tab-selected[b-9hh6rgiurr] {
            border-bottom: 3px solid #2a5885; /* Horizontal indicator on mobile */
            border-left: none !important;
        }

    .video-page-content[b-9hh6rgiurr] {
        flex-direction: column;
    }

    .video-info-section[b-9hh6rgiurr] {
        flex: 0 0 auto;
    }
}

/*#endregion */
/* /Components/Pages/Waddington_Literacy.razor.rz.scp.css */
/* ============================================================
   TEMIS — Waddington Shared Styles
   Used by both Literacy and Numeracy assessment pages
   v2.90.0
   ============================================================ */

body[b-xg2j6wd18o] {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #F1FAEE;
    margin: 0;
    padding: 20px;
    color: #1A1A2E;
}

/* ==========================================================
   Dashboard Layout
   ========================================================== */

.dashboard-container[b-xg2j6wd18o] {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 20px;
    padding: 0.5rem 0;
}

.dashboard-card[b-xg2j6wd18o] {
    background: white;
    border-radius: 8px;
    box-shadow: none;
    border: 1px solid #e9ecef;
    border-top: 4px solid #3A86FF;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

    .dashboard-card:nth-child(2)[b-xg2j6wd18o] {
        border-top-color: #ffbe07;
    }


.dashboard-double-width[b-xg2j6wd18o] {
    grid-column: span 2;
    padding: 0;
}

.dashboard-actions[b-xg2j6wd18o] {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: none;
    border: 1px solid #e9ecef;
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* ==========================================================
   School Info
   ========================================================== */

.school-name[b-xg2j6wd18o] {
    color: #212529;
    font-size: 24px;
    font-weight: 200;
    margin: 0 0 15px 0;
}

.stat-row[b-xg2j6wd18o] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.stat-label[b-xg2j6wd18o] {
    font-weight: 600;
    color: #1A1A2E;
    font-size: 15px;
}

.stat-value[b-xg2j6wd18o] {
    font-weight: 700;
    padding: 0 15px;
}

.highlight-value[b-xg2j6wd18o] {
    color: #3A86FF;
    font-weight: 500;
    font-size: 18px;
}

.gender-stats[b-xg2j6wd18o] {
    font-size: 13px;
    color: #6C757D;
    margin-top: 4px;
    font-weight: 500;
}

/* ==========================================================
   Section Headers & Tables
   ========================================================== */

.table-container[b-xg2j6wd18o] {
    padding: 0;
    overflow-x: auto;
}

.section-header[b-xg2j6wd18o] {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 12px;
    margin-left: 10px;
    margin-top: 10px;
}

    .section-header .header-icon[b-xg2j6wd18o] {
        margin-bottom: 9px;
    }

.education-table[b-xg2j6wd18o] {
    width: 100%;
    border-collapse: collapse;
    font-size: 1.4rem;
    table-layout: fixed;
}

    .education-table th[b-xg2j6wd18o] {
        background-color: #f8f9fa;
        color: #2c3e50;
        font-weight: 600;
        text-transform: uppercase;
        font-size: 1.0rem;
        letter-spacing: 0.5px;
        padding: 12px 15px;
        text-align: left;
        border-bottom: 2px solid #e9ecef;
    }

    .education-table td[b-xg2j6wd18o] {
        padding: 12px 15px;
        border-bottom: 1px solid #f1f3f5;
        vertical-align: middle;
    }

    .education-table tr:last-child td[b-xg2j6wd18o] {
        border-bottom: none;
    }

    .education-table tr:hover[b-xg2j6wd18o] {
        background-color: #f8fafc;
    }

    .education-table th[b-xg2j6wd18o],
    .education-table td[b-xg2j6wd18o] {
        width: calc(100% / 7);
        text-align: center;
        padding: 12px 8px;
    }

        .education-table th:first-child[b-xg2j6wd18o],
        .education-table td:first-child[b-xg2j6wd18o] {
            text-align: left;
            padding-left: 15px;
        }

/* Column-specific */
.island-col[b-xg2j6wd18o] {
    width: 150px;
}

.gender-col[b-xg2j6wd18o] {
    width: 180px;
}

.numeric-col[b-xg2j6wd18o] {
    text-align: center !important;
}

.numeric[b-xg2j6wd18o] {
    text-align: center;
    font-weight: 500;
    color: #3A86FF;
}

.gender[b-xg2j6wd18o] {
    text-align: center;
    font-size: 0.9rem;
}

.ratio[b-xg2j6wd18o] {
    color: #06D6A0;
}

.internet[b-xg2j6wd18o] {
    color: #8338EC;
}

.resume-banner[b-xg2j6wd18o] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    margin-bottom: 12px;
    background: #e8f4fd;
    border: 1px solid #b6ddf3;
    border-left: 4px solid #004fb9;
    border-radius: 6px;
    font-size: 0.88rem;
    color: #1a5276;
}

    .resume-banner i[b-xg2j6wd18o] {
        color: #004fb9;
        flex-shrink: 0;
    }

.resume-btn[b-xg2j6wd18o] {
    margin-left: auto;
    padding: 5px 14px;
    background: #004fb9;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    transition: background 0.2s;
}

    .resume-btn:hover[b-xg2j6wd18o] {
        background: #2468c7;
        color: white;
    }

.resume-dismiss[b-xg2j6wd18o] {
    background: none;
    border: none;
    color: #6c757d;
    cursor: pointer;
    font-size: 1rem;
    padding: 2px 6px;
}

    .resume-dismiss:hover[b-xg2j6wd18o] {
        color: #333;
    }


/* ==========================================================
   Buttons & Actions
   ========================================================== */

.actions-header[b-xg2j6wd18o] {
    color: #2c3e50;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f1f3f5;
}

.action-button[b-xg2j6wd18o] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

    .action-button i[b-xg2j6wd18o] {
        font-size: 1.2rem;
    }

    .action-button:hover[b-xg2j6wd18o] {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

.student-button[b-xg2j6wd18o] {
    background-color: #3498db;
}

.staff-button[b-xg2j6wd18o] {
    background-color: #2ecc71;
}

.sgca-button[b-xg2j6wd18o] {
    background-color: #9b59b6;
}

.tgca-button[b-xg2j6wd18o] {
    background-color: #f39c12;
}

.export-excel-button[b-xg2j6wd18o] {
    background-color: #1d6f42;
    color: white;
    border: none;
    padding: 13px 13px;
    margin-bottom: 10px;
    width: 100%;
    text-align: left;
}

    .export-excel-button i[b-xg2j6wd18o] {
        margin-right: 5px;
        margin-left: 11px;
    }

.edit-button[b-xg2j6wd18o] {
    background: linear-gradient(135deg, #2980b9 0%, #3498db 100%);
    border-left-color: #1f6fb3;
    border-right: none;
    border-top: none;
    border-bottom: none;
    width: 100%;
}

.primary-action[b-xg2j6wd18o] {
    background-color: #4a90e2;
    color: white;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
}

    .primary-action:hover[b-xg2j6wd18o] {
        background-color: #3a7bc8;
    }

.actions-divider[b-xg2j6wd18o] {
    border: none;
    border-top: 1px solid #ccc;
    margin: 0.5rem 0;
}

/* Latest Feature Box */
.latest-feature-box[b-xg2j6wd18o] {
    margin-top: 2rem;
    padding: 1rem 1.5rem;
    background: #e0f7fa;
    border-left: 5px solid #00acc1;
    display: flex;
    align-items: center;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

    .latest-feature-box .feature-icon[b-xg2j6wd18o] {
        font-size: 1.8rem;
        color: #00796b;
        margin-right: 1rem;
    }

    .latest-feature-box .feature-content h4[b-xg2j6wd18o] {
        margin: 0 0 0.3rem 0;
        font-weight: 600;
        color: #007c91;
    }

    .latest-feature-box .feature-content p[b-xg2j6wd18o] {
        margin: 0;
        color: #004d57;
        font-size: 0.9rem;
        line-height: 1.3;
    }

/* Table Header with Export */
.table-header[b-xg2j6wd18o] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px 15px 15px;
}

.export-btn[b-xg2j6wd18o] {
    background-color: #1d6f42;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

    .export-btn:hover[b-xg2j6wd18o] {
        background-color: #165a36;
        transform: translateY(-1px);
    }

    .export-btn i[b-xg2j6wd18o] {
        font-size: 1rem;
    }

/* ==========================================================
   Welcome / Header Section
   ========================================================== */

.welcome-container[b-xg2j6wd18o] {
    background-color: #f8f9fa;
    border-left: 3px solid #004fb9;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 0.5rem;
}

.welcome-grid[b-xg2j6wd18o] {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2rem;
    align-items: flex-start;
}

.welcome-content[b-xg2j6wd18o] {
    grid-column: 1;
}

.dropdown-column[b-xg2j6wd18o] {
    grid-column: 2;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.welcome-title[b-xg2j6wd18o] {
    color: #004fb9;
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 1rem;
    font-weight: 600;
}

.welcome-text[b-xg2j6wd18o] {
    color: #4a4a4a;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.dropdown-header[b-xg2j6wd18o] {
    font-weight: 600;
    color: #495057;
    font-size: 0.95rem;
}

.dropdown-footer[b-xg2j6wd18o] {
    font-size: 0.85rem;
    color: #6c757d;
    font-style: italic;
    text-align: center;
}

.dropdown-container[b-xg2j6wd18o] {
    width: 100%;
}

.dxbs-combo-box[b-xg2j6wd18o] {
    width: 100% !important;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    padding: 8px 12px;
    background-color: white;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

/* ==========================================================
   Attendance Table
   ========================================================== */

.attendance-note[b-xg2j6wd18o] {
    margin-top: 20px;
    font-size: 14px;
    color: #7f8c8d;
    text-align: center;
    font-style: italic;
}

.attendance-instruction[b-xg2j6wd18o] {
    /* shared across both pages */
}

.attendance-table-container[b-xg2j6wd18o] {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    max-width: 600px;
    margin: 20px auto;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-radius: 0px;
    overflow: hidden;
    height: 600px;
}

.attendance-table[b-xg2j6wd18o] {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

    .attendance-table th[b-xg2j6wd18o] {
        background-color: #f2f2f2;
        color: black;
        padding: 12px 15px;
        font-weight: 600;
    }

    .attendance-table td[b-xg2j6wd18o] {
        padding: 12px 15px;
        border-bottom: 1px solid #e0e0e0;
    }

    .attendance-table tr:last-child td[b-xg2j6wd18o] {
        border-bottom: none;
    }

.present[b-xg2j6wd18o] {
    background-color: #ffffff;
}

.absent[b-xg2j6wd18o] {
    background-color: #ffebee;
}

.halfday[b-xg2j6wd18o] {
    background-color: #ffffff;
}

.status-badge[b-xg2j6wd18o] {
    font-weight: bold;
    padding: 4px 8px;
    border-radius: 12px;
    display: inline-block;
}

.present .status-badge[b-xg2j6wd18o] {
    background-color: #2ecc71;
    color: white;
}

.absent .status-badge[b-xg2j6wd18o] {
    background-color: #e74c3c;
    color: white;
}

.halfday .status-badge[b-xg2j6wd18o] {
    background-color: #f39c12;
    color: white;
}

.count-footer[b-xg2j6wd18o] {
    text-align: center;
    padding: 10px;
    color: #666;
}

.pagination-controls[b-xg2j6wd18o] {
    display: flex;
    justify-content: center;
    margin: 20px 0;
    gap: 5px;
}

    .pagination-controls button[b-xg2j6wd18o] {
        padding: 8px 12px;
        border: 1px solid #ddd;
        background: white;
        cursor: pointer;
        border-radius: 4px;
        min-width: 40px;
    }

        .pagination-controls button:hover:not(:disabled)[b-xg2j6wd18o] {
            background: #f0f0f0;
        }

        .pagination-controls button:disabled[b-xg2j6wd18o] {
            opacity: 0.5;
            cursor: not-allowed;
        }

        .pagination-controls button.active[b-xg2j6wd18o] {
            background: #2c3e50;
            color: white;
            border-color: #2c3e50;
        }

/* ==========================================================
   Attendance Infographic
   ========================================================== */

.metrics-container[b-xg2j6wd18o] {
    display: flex;
    margin-left: 10px;
    justify-content: left;
    gap: 10px;
    max-width: 600px;
    width: 356px;
}

.metric-box[b-xg2j6wd18o] {
    background: white;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    padding: 10px 15px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    max-width: 250px;
    width: 250px;
}

.percentage[b-xg2j6wd18o] {
    font-size: 48px;
    font-weight: normal;
    color: darkgreen;
    line-height: 1.2;
    margin-bottom: 8px;
}

.label[b-xg2j6wd18o] {
    font-size: 22px;
    color: #555;
    text-transform: capitalize;
    letter-spacing: 0px;
}

.attendance-infographic[b-xg2j6wd18o] {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 16px;
    padding: 25px;
    max-width: 500px;
    margin: 20px auto;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-left: 0px solid darkgreen;
}

.attendance-header[b-xg2j6wd18o] {
    color: #2c3e50;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.metric-grid[b-xg2j6wd18o] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 15px;
}

.rate-grid[b-xg2j6wd18o] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 15px;
}

.metric-item[b-xg2j6wd18o] {
    background: white;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.rate-item[b-xg2j6wd18o] {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-top: 4px solid;
    text-align: center;
}

.metric-label[b-xg2j6wd18o] {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 5px;
}

.metric-value[b-xg2j6wd18o] {
    font-size: 28px;
    font-weight: 700;
}

.rate-label[b-xg2j6wd18o] {
    font-size: 16px;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.rate-value[b-xg2j6wd18o] {
    font-size: 36px;
    font-weight: 800;
}

.total-days .metric-value[b-xg2j6wd18o] {
    color: #3498db;
}

.present-days .metric-value[b-xg2j6wd18o] {
    color: #2ecc71;
}

.absent-days .metric-value[b-xg2j6wd18o] {
    color: #e74c3c;
}

.late-days .metric-value[b-xg2j6wd18o] {
    color: #f39c12;
}

.attendance-rate[b-xg2j6wd18o] {
    border-top-color: #3498db;
}

    .attendance-rate .rate-value[b-xg2j6wd18o] {
        color: #3498db;
    }

.punctuality-rate[b-xg2j6wd18o] {
    border-top-color: #9b59b6;
}

    .punctuality-rate .rate-value[b-xg2j6wd18o] {
        color: #9b59b6;
    }

.export-container[b-xg2j6wd18o] {
    position: absolute;
    bottom: 20px;
    right: 20px;
    text-align: right;
}

.export-excel-btn[b-xg2j6wd18o] {
    background-color: #217346;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

    .export-excel-btn:hover[b-xg2j6wd18o] {
        background-color: #1a5f38;
    }

    .export-excel-btn:active[b-xg2j6wd18o] {
        transform: translateY(1px);
    }

/* ==========================================================
   Attendance Marking
   ========================================================== */

.attendance-marking[b-xg2j6wd18o] {
    width: 100%;
    gap: 1.5rem;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.student-info[b-xg2j6wd18o] {
    text-align: center;
}

.student-name[b-xg2j6wd18o] {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.instruction[b-xg2j6wd18o] {
    font-size: 1rem;
    color: #666;
}

/* Compact Attendance Buttons */
.compact-attendance-buttons[b-xg2j6wd18o] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.compact-button[b-xg2j6wd18o] {
    display: flex;
    align-items: center;
    text-align: left;
    padding: 0.6rem 1rem;
    width: 100%;
    border-radius: 6px;
    border: 1px solid transparent;
    background-color: rgba(255, 255, 255, 0.8);
    transition: all 0.2s ease;
    min-height: auto;
}

    .compact-button i[b-xg2j6wd18o] {
        font-size: 1.25rem;
        margin-right: 0.8rem;
        width: 24px;
        text-align: center;
    }

.button-text[b-xg2j6wd18o] {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.button-title[b-xg2j6wd18o] {
    font-weight: 600;
    font-size: 0.95rem;
    color: inherit;
}

.button-subtitle[b-xg2j6wd18o] {
    font-size: 0.8rem;
    color: rgba(0, 0, 0, 0.7);
    font-weight: normal;
}

.present-button[b-xg2j6wd18o] {
    color: #70ad47;
    border-color: #70ad47;
}

.late-button[b-xg2j6wd18o] {
    color: #ffc000;
    border-color: #ffc000;
}

.absent-button[b-xg2j6wd18o] {
    color: #ff0000;
    border-color: #ff0000;
}

.compact-button:hover[b-xg2j6wd18o] {
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.present-button:hover[b-xg2j6wd18o] {
    background-color: rgba(112, 173, 71, 0.1);
}

.late-button:hover[b-xg2j6wd18o] {
    background-color: rgba(255, 192, 0, 0.1);
}

.absent-button:hover[b-xg2j6wd18o] {
    background-color: rgba(255, 0, 0, 0.1);
}

.compact-button.active[b-xg2j6wd18o] {
    color: white;
}

    .compact-button.active .button-subtitle[b-xg2j6wd18o] {
        color: rgba(255, 255, 255, 0.9);
    }

.present-button.active[b-xg2j6wd18o] {
    background-color: #70ad47;
}

.late-button.active[b-xg2j6wd18o] {
    background-color: #ffc000;
}

.absent-button.active[b-xg2j6wd18o] {
    background-color: #ff0000;
}

/* Vertical Attendance Buttons */
.attendance-buttons-vertical[b-xg2j6wd18o] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

    .attendance-buttons-vertical .action-button[b-xg2j6wd18o] {
        display: flex;
        align-items: center;
        text-align: left;
        padding: 1rem 1.5rem;
        width: 100%;
        border-radius: 6px;
        transition: all 0.2s ease;
    }

        .attendance-buttons-vertical .action-button i[b-xg2j6wd18o] {
            font-size: 1.5rem;
            margin-right: 1rem;
            min-width: 30px;
        }

        .attendance-buttons-vertical .action-button span[b-xg2j6wd18o] {
            font-weight: 600;
            font-size: 1.1rem;
            margin-right: auto;
        }

.button-description[b-xg2j6wd18o] {
    font-size: 0.85rem;
    font-weight: normal;
    color: rgba(0, 0, 0, 0.7);
    margin-top: 0.25rem;
    display: block;
}

.attendance-buttons-vertical .action-button.active[b-xg2j6wd18o] {
    color: white;
}

    .attendance-buttons-vertical .action-button.active .button-description[b-xg2j6wd18o] {
        color: rgba(255, 255, 255, 0.9);
    }

.attendance-buttons-vertical .present-button:hover[b-xg2j6wd18o] {
    background-color: rgba(112, 173, 71, 0.15);
}

.attendance-buttons-vertical .late-button:hover[b-xg2j6wd18o] {
    background-color: rgba(255, 192, 0, 0.15);
}

.attendance-buttons-vertical .absent-button:hover[b-xg2j6wd18o] {
    background-color: rgba(255, 0, 0, 0.15);
}

/* ==========================================================
   Term Status Widget & Tooltip
   ========================================================== */

.term-status-widget[b-xg2j6wd18o] {
    position: relative;
    font-family: 'Segoe UI', system-ui, sans-serif;
    margin-bottom: 20px;
}

.current-term-badge[b-xg2j6wd18o] {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    border-radius: 8px;
    cursor: default;
    transition: all 0.2s ease;
    position: relative;
    border: 1px solid rgba(0,0,0,0.1);
}

    .current-term-badge:hover[b-xg2j6wd18o] {
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        transform: translateY(-1px);
    }

    .current-term-badge i[b-xg2j6wd18o] {
        font-size: 1.4em;
        width: 24px;
        text-align: center;
    }

.term-info[b-xg2j6wd18o] {
    line-height: 1.3;
}

.term-title[b-xg2j6wd18o] {
    font-weight: 600;
    font-size: 0.95em;
}

.term-dates[b-xg2j6wd18o] {
    font-size: 0.85em;
    color: #555;
}

.academic-calendar-tooltip[b-xg2j6wd18o] {
    position: absolute;
    bottom: 100%;
    left: 0;
    width: 300px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    padding: 15px;
    z-index: 9999;
    margin-bottom: 10px;
    opacity: 0;
    animation: tooltipFadeIn 0.2s ease-out forwards;
    border: 1px solid #eee;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

    .academic-calendar-tooltip.visible[b-xg2j6wd18o] {
        opacity: 1;
        pointer-events: auto;
    }

    .academic-calendar-tooltip.bottom-tooltip[b-xg2j6wd18o] {
        top: 100%;
        bottom: auto;
        left: 0;
        margin-top: 8px;
        margin-bottom: 0;
        animation: tooltipFadeInUp-b-xg2j6wd18o 0.2s ease-out forwards;
    }

        .academic-calendar-tooltip.bottom-tooltip[b-xg2j6wd18o]::before {
            content: '';
            position: absolute;
            bottom: 100%;
            left: 20px;
            border-width: 8px;
            border-style: solid;
            border-color: transparent transparent white transparent;
            filter: drop-shadow(0 -2px 2px rgba(0,0,0,0.1));
        }

.high-z-index-combo .dxbl-dropdown[b-xg2j6wd18o] {
    z-index: 9999 !important;
}

.tooltip-header[b-xg2j6wd18o] {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid #f0f0f0;
}

    .tooltip-header i[b-xg2j6wd18o] {
        color: #666;
    }

    .tooltip-header h4[b-xg2j6wd18o] {
        margin: 0;
        font-size: 1em;
        color: #333;
    }

.term-list[b-xg2j6wd18o] {
    max-height: 400px;
    overflow-y: auto;
    padding-right: 5px;
}

.term-item[b-xg2j6wd18o] {
    padding: 8px 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    border-bottom: 1px solid #f5f5f5;
}

    .term-item:last-child[b-xg2j6wd18o] {
        border-bottom: none;
    }

.term-name[b-xg2j6wd18o] {
    font-weight: 500;
    width: 110px;
    flex-shrink: 0;
}

.term-date-range[b-xg2j6wd18o] {
    flex-grow: 1;
    font-size: 0.9em;
    color: #666;
}

.term-duration[b-xg2j6wd18o] {
    font-size: 0.8em;
    color: #999;
    font-style: italic;
    width: 100%;
    margin-top: 3px;
    padding-left: 110px;
}

.is-break[b-xg2j6wd18o] {
    background-color: #FFF9E6;
    border-radius: 4px;
    margin: 2px -5px;
    padding: 8px 5px;
}

/* Term Status Colours */
.term-status[b-xg2j6wd18o] {
    background-color: rgba(112, 173, 71, 0.1);
    border-left: 3px solid #70ad47;
}

.holiday-status[b-xg2j6wd18o] {
    background-color: rgba(255, 192, 0, 0.1);
    border-left: 3px solid #ffc000;
}

.no-term-status[b-xg2j6wd18o] {
    background-color: rgba(200, 200, 200, 0.1);
    border-left: 3px solid #ccc;
}

/* Scrollbar */
.term-list[b-xg2j6wd18o]::-webkit-scrollbar {
    width: 6px;
}

.term-list[b-xg2j6wd18o]::-webkit-scrollbar-thumb {
    background-color: rgba(0,0,0,0.2);
    border-radius: 3px;
}

/* ==========================================================
   Form Elements & Assessment Entry
   ========================================================== */

.form-label-bold[b-xg2j6wd18o] {
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #444;
    margin-bottom: 0.5rem;
    display: block;
}

.highlight-instruction[b-xg2j6wd18o] {
    font-weight: 500;
    color: #4a5568;
    font-size: 1rem;
    margin: 0.5rem 0 0;
    padding: 0.5rem;
    background-color: #f8f9fa;
    border-left: 3px solid #4a90e2;
}

.emphasized-group[b-xg2j6wd18o] {
    margin: 1.25rem 0;
    padding: 1rem;
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.highlighted-result[b-xg2j6wd18o] {
    font-size: 1.4rem;
    font-weight: 600;
    color: #004fb9;
    padding: 0.75rem;
    background-color: #f8fafd;
    border-radius: 4px;
    border: 1px solid #e1e5eb;
    text-align: center;
}

.student-info-container[b-xg2j6wd18o] {
    text-align: left;
    margin-bottom: 1.5rem;
}

.student-info-card[b-xg2j6wd18o] {
    background-color: #fff;
    border-radius: 6px;
    padding: 1rem 1.25rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    border-left: 4px solid #4a90e2;
}

.student-name-highlight[b-xg2j6wd18o] {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #eaeef2;
}

.emphasized-input .dx-texteditor-input[b-xg2j6wd18o] {
    font-size: 1.1rem;
    font-weight: 500;
    padding: 0.75rem;
}

/* ==========================================================
   Reading Age & Phase Styling (Literacy + shared)
   ========================================================== */

.reading-age-highlight[b-xg2j6wd18o] {
    font-weight: bold;
    background-color: #E3F7FF;
    padding: 4px 8px;
    border-radius: 4px;
    border-left: 4px solid #1976D2;
    color: #0D47A1;
    display: inline-block;
}

/* Reading Phase Colour Coding (Task 1 — updated labels) */
.phase-emergent[b-xg2j6wd18o] {
    background: #FFF3E0;
    color: #E65100;
    border-color: #FF9800;
}

.phase-early[b-xg2j6wd18o] {
    background: #FFF8E1;
    color: #F57F17;
    border-color: #FFC107;
}

.phase-developing[b-xg2j6wd18o] {
    background: #E8F5E9;
    color: #2E7D32;
    border-color: #4CAF50;
}

.phase-fluent[b-xg2j6wd18o] {
    background: #E3F2FD;
    color: #1565C0;
    border-color: #2196F3;
}

.phase-independent-reader[b-xg2j6wd18o] {
    background: #EDE7F6;
    color: #4527A0;
    border-color: #673AB7;
}

/* Shared phase styling */
.reading-age-highlight[b-xg2j6wd18o],
[class^="phase-"][b-xg2j6wd18o] {
    font-weight: bold;
    padding: 4px 8px;
    border-radius: 4px;
    border-left: 4px solid;
    display: inline-block;
}

/* ==========================================================
   Loading & Error
   ========================================================== */

.loading-overlay[b-xg2j6wd18o] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.spinner-border[b-xg2j6wd18o] {
    width: 3rem;
    height: 3rem;
}

.absence-reason-modal[b-xg2j6wd18o] {
    padding: 20px;
}

.modal-buttons[b-xg2j6wd18o] {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 20px;
}

.student-grid-container[b-xg2j6wd18o] {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* ==========================================================
   Animations
   ========================================================== */

@keyframes tooltipFadeInUp-b-xg2j6wd18o {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================
   Responsive
   ========================================================== */

@media (max-width: 1200px) {
    .dashboard-container[b-xg2j6wd18o] {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .dashboard-double-width[b-xg2j6wd18o] {
        grid-column: span 1;
    }

    .dashboard-card[b-xg2j6wd18o] {
        padding: 12px;
    }

    .dashboard-actions[b-xg2j6wd18o] {
        flex-direction: column;
        flex-wrap: wrap;
    }

    .action-button[b-xg2j6wd18o] {
        flex: 1 1 200px;
    }

    .education-table th[b-xg2j6wd18o],
    .education-table td[b-xg2j6wd18o] {
        width: auto;
        table-layout: auto;
        font-size: 0.85rem;
    }
}

@media (max-width: 1068px) {
    .welcome-grid[b-xg2j6wd18o] {
        display: block;
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .hide-mobile[b-xg2j6wd18o] {
        display: none;
    }
}

@media (max-width: 768px) {
    .gender-col[b-xg2j6wd18o] {
        display: none;
    }

    .education-table th[b-xg2j6wd18o],
    .education-table td[b-xg2j6wd18o] {
        padding: 10px 8px;
    }

    .dashboard-card[b-xg2j6wd18o] {
        padding: 12px;
    }

    .action-button[b-xg2j6wd18o] {
        flex: 1 1 100%;
        padding: 1rem 0.5rem;
        flex-direction: row;
        gap: 0.75rem;
        justify-content: flex-start;
        padding-left: 1.5rem;
    }

        .action-button i[b-xg2j6wd18o] {
            margin-bottom: 0;
            font-size: 1.5rem;
        }

    .dropdown-column[b-xg2j6wd18o] {
        grid-column: 1;
    }

    .dropdown-header[b-xg2j6wd18o] {
        text-align: center;
    }

    .student-grid-container[b-xg2j6wd18o] {
        margin: 0 -8px;
        padding: 0 8px;
    }

    .attendance-buttons-vertical .action-button[b-xg2j6wd18o] {
        padding: 0.8rem 1rem;
    }

        .attendance-buttons-vertical .action-button i[b-xg2j6wd18o] {
            font-size: 1.25rem;
            margin-right: 0.75rem;
        }
}
/* /Components/Pages/Waddington_Numeracy.razor.rz.scp.css */
/* ============================================================
   TEMIS — Waddington Shared Styles
   Used by both Literacy and Numeracy assessment pages
   v2.90.0
   ============================================================ */

body[b-5uhraautdx] {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #F1FAEE;
    margin: 0;
    padding: 20px;
    color: #1A1A2E;
}

/* ==========================================================
   Dashboard Layout
   ========================================================== */

.dashboard-container[b-5uhraautdx] {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 20px;
    padding: 0.5rem 0;
}

.dashboard-card[b-5uhraautdx] {
    background: white;
    border-radius: 8px;
    box-shadow: none;
    border: 1px solid #e9ecef;
    border-top: 4px solid #3A86FF;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

    .dashboard-card:nth-child(2)[b-5uhraautdx] {
        border-top-color: #ffbe07;
    }

.dashboard-actions[b-5uhraautdx] {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: none;
    border: 1px solid #e9ecef;
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* ==========================================================
   School Info
   ========================================================== */

.school-name[b-5uhraautdx] {
    color: #212529;
    font-size: 24px;
    font-weight: 200;
    margin: 0 0 15px 0;
}

.stat-row[b-5uhraautdx] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.stat-label[b-5uhraautdx] {
    font-weight: 600;
    color: #1A1A2E;
    font-size: 15px;
}

.stat-value[b-5uhraautdx] {
    font-weight: 700;
    padding: 0 15px;
}

.highlight-value[b-5uhraautdx] {
    color: #3A86FF;
    font-weight: 500;
    font-size: 18px;
}

.gender-stats[b-5uhraautdx] {
    font-size: 13px;
    color: #6C757D;
    margin-top: 4px;
    font-weight: 500;
}

/* ==========================================================
   Section Headers & Tables
   ========================================================== */

.table-container[b-5uhraautdx] {
    padding: 0;
    overflow-x: auto;
}

.section-header[b-5uhraautdx] {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 12px;
    margin-left: 10px;
    margin-top: 10px;
}

    .section-header .header-icon[b-5uhraautdx] {
        margin-bottom: 9px;
    }

.education-table[b-5uhraautdx] {
    font-size: 0.78rem;
    border-collapse: collapse;
    width: 100%;
    table-layout: fixed;
}

    .education-table th[b-5uhraautdx] {
        font-size: 0.7rem;
        text-transform: uppercase;
        letter-spacing: 0.02em;
        padding: 6px 3px;
        text-align: center;
        vertical-align: bottom;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        background: #f8f9fa;
        border-bottom: 2px solid #dee2e6;
    }

    .education-table td[b-5uhraautdx] {
        padding: 4px 3px;
        text-align: center;
        vertical-align: middle;
        border-bottom: 1px solid #eee;
    }

    .education-table tr:last-child td[b-5uhraautdx] {
        border-bottom: none;
    }

    .education-table tbody tr:hover[b-5uhraautdx] {
        background: #f0f7ff;
    }

    .education-table th[b-5uhraautdx],
    .education-table td[b-5uhraautdx] {
        width: calc(100% / 7);
        text-align: center;
        padding: 12px 8px;
    }

        .education-table th:first-child[b-5uhraautdx],
        .education-table td:first-child[b-5uhraautdx] {
            text-align: left;
            padding-left: 15px;
        }

/* Column-specific */
.island-col[b-5uhraautdx] {
    width: 150px;
}

.gender-col[b-5uhraautdx] {
    width: 180px;
}

.numeric-col[b-5uhraautdx] {
    text-align: center !important;
}

.numeric[b-5uhraautdx] {
    text-align: center;
    font-weight: 500;
    color: #3A86FF;
}

.gender[b-5uhraautdx] {
    text-align: center;
    font-size: 0.9rem;
}

.ratio[b-5uhraautdx] {
    color: #06D6A0;
}

.internet[b-5uhraautdx] {
    color: #8338EC;
}

/* ==========================================================
   Buttons & Actions
   ========================================================== */

.actions-header[b-5uhraautdx] {
    color: #2c3e50;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f1f3f5;
}

.action-button[b-5uhraautdx] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

    .action-button i[b-5uhraautdx] {
        font-size: 1.2rem;
    }

    .action-button:hover[b-5uhraautdx] {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

.student-button[b-5uhraautdx] {
    background-color: #3498db;
}

.staff-button[b-5uhraautdx] {
    background-color: #2ecc71;
}

.sgca-button[b-5uhraautdx] {
    background-color: #9b59b6;
}

.tgca-button[b-5uhraautdx] {
    background-color: #f39c12;
}

.export-excel-button[b-5uhraautdx] {
    background-color: #1d6f42;
    color: white;
    border: none;
    padding: 13px 13px;
    margin-bottom: 10px;
    width: 100%;
    text-align: left;
}

    .export-excel-button i[b-5uhraautdx] {
        margin-right: 5px;
        margin-left: 11px;
    }

.edit-button[b-5uhraautdx] {
    background: linear-gradient(135deg, #2980b9 0%, #3498db 100%);
    border-left-color: #1f6fb3;
    border-right: none;
    border-top: none;
    border-bottom: none;
    width: 100%;
}

.primary-action[b-5uhraautdx] {
    background-color: #4a90e2;
    color: white;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
}

    .primary-action:hover[b-5uhraautdx] {
        background-color: #3a7bc8;
    }

.actions-divider[b-5uhraautdx] {
    border: none;
    border-top: 1px solid #ccc;
    margin: 0.5rem 0;
}

/* Latest Feature Box */
.latest-feature-box[b-5uhraautdx] {
    margin-top: 2rem;
    padding: 1rem 1.5rem;
    background: #e0f7fa;
    border-left: 5px solid #00acc1;
    display: flex;
    align-items: center;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

    .latest-feature-box .feature-icon[b-5uhraautdx] {
        font-size: 1.8rem;
        color: #00796b;
        margin-right: 1rem;
    }

    .latest-feature-box .feature-content h4[b-5uhraautdx] {
        margin: 0 0 0.3rem 0;
        font-weight: 600;
        color: #007c91;
    }

    .latest-feature-box .feature-content p[b-5uhraautdx] {
        margin: 0;
        color: #004d57;
        font-size: 0.9rem;
        line-height: 1.3;
    }

/* Table Header with Export */
.table-header[b-5uhraautdx] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px 15px 15px;
}

.export-btn[b-5uhraautdx] {
    background-color: #1d6f42;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

    .export-btn:hover[b-5uhraautdx] {
        background-color: #165a36;
        transform: translateY(-1px);
    }

    .export-btn i[b-5uhraautdx] {
        font-size: 1rem;
    }

/* ==========================================================
   Welcome / Header Section
   ========================================================== */

.welcome-container[b-5uhraautdx] {
    background-color: #f8f9fa;
    border-left: 3px solid #004fb9;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 0.5rem;
}

.welcome-grid[b-5uhraautdx] {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2rem;
    align-items: flex-start;
}

.welcome-content[b-5uhraautdx] {
    grid-column: 1;
}

.dropdown-column[b-5uhraautdx] {
    grid-column: 2;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.welcome-title[b-5uhraautdx] {
    color: #004fb9;
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 1rem;
    font-weight: 600;
}

.welcome-text[b-5uhraautdx] {
    color: #4a4a4a;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.dropdown-header[b-5uhraautdx] {
    font-weight: 600;
    color: #495057;
    font-size: 0.95rem;
}

.dropdown-footer[b-5uhraautdx] {
    font-size: 0.85rem;
    color: #6c757d;
    font-style: italic;
    text-align: center;
}

.dropdown-container[b-5uhraautdx] {
    width: 100%;
}

.dxbs-combo-box[b-5uhraautdx] {
    width: 100% !important;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    padding: 8px 12px;
    background-color: white;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

/* ==========================================================
   Attendance Table
   ========================================================== */

.attendance-note[b-5uhraautdx] {
    margin-top: 20px;
    font-size: 14px;
    color: #7f8c8d;
    text-align: center;
    font-style: italic;
}

.attendance-instruction[b-5uhraautdx] {
    /* shared across both pages */
}

.attendance-table-container[b-5uhraautdx] {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    max-width: 600px;
    margin: 20px auto;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-radius: 0px;
    overflow: hidden;
    height: 600px;
}

.attendance-table[b-5uhraautdx] {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

    .attendance-table th[b-5uhraautdx] {
        background-color: #f2f2f2;
        color: black;
        padding: 12px 15px;
        font-weight: 600;
    }

    .attendance-table td[b-5uhraautdx] {
        padding: 12px 15px;
        border-bottom: 1px solid #e0e0e0;
    }

    .attendance-table tr:last-child td[b-5uhraautdx] {
        border-bottom: none;
    }

.present[b-5uhraautdx] {
    background-color: #ffffff;
}

.absent[b-5uhraautdx] {
    background-color: #ffebee;
}

.halfday[b-5uhraautdx] {
    background-color: #ffffff;
}

.status-badge[b-5uhraautdx] {
    font-weight: bold;
    padding: 4px 8px;
    border-radius: 12px;
    display: inline-block;
}

.present .status-badge[b-5uhraautdx] {
    background-color: #2ecc71;
    color: white;
}

.absent .status-badge[b-5uhraautdx] {
    background-color: #e74c3c;
    color: white;
}

.halfday .status-badge[b-5uhraautdx] {
    background-color: #f39c12;
    color: white;
}

.count-footer[b-5uhraautdx] {
    text-align: center;
    padding: 10px;
    color: #666;
}

.pagination-controls[b-5uhraautdx] {
    display: flex;
    justify-content: center;
    margin: 20px 0;
    gap: 5px;
}

    .pagination-controls button[b-5uhraautdx] {
        padding: 8px 12px;
        border: 1px solid #ddd;
        background: white;
        cursor: pointer;
        border-radius: 4px;
        min-width: 40px;
    }

        .pagination-controls button:hover:not(:disabled)[b-5uhraautdx] {
            background: #f0f0f0;
        }

        .pagination-controls button:disabled[b-5uhraautdx] {
            opacity: 0.5;
            cursor: not-allowed;
        }

        .pagination-controls button.active[b-5uhraautdx] {
            background: #2c3e50;
            color: white;
            border-color: #2c3e50;
        }

/* ==========================================================
   Attendance Infographic
   ========================================================== */

.metrics-container[b-5uhraautdx] {
    display: flex;
    margin-left: 10px;
    justify-content: left;
    gap: 10px;
    max-width: 600px;
    width: 356px;
}

.metric-box[b-5uhraautdx] {
    background: white;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    padding: 10px 15px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    max-width: 250px;
    width: 250px;
}

.percentage[b-5uhraautdx] {
    font-size: 48px;
    font-weight: normal;
    color: darkgreen;
    line-height: 1.2;
    margin-bottom: 8px;
}

.label[b-5uhraautdx] {
    font-size: 22px;
    color: #555;
    text-transform: capitalize;
    letter-spacing: 0px;
}

.attendance-infographic[b-5uhraautdx] {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 16px;
    padding: 25px;
    max-width: 500px;
    margin: 20px auto;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-left: 0px solid darkgreen;
}

.attendance-header[b-5uhraautdx] {
    color: #2c3e50;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.metric-grid[b-5uhraautdx] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 15px;
}

.rate-grid[b-5uhraautdx] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 15px;
}

.metric-item[b-5uhraautdx] {
    background: white;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.rate-item[b-5uhraautdx] {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-top: 4px solid;
    text-align: center;
}

.metric-label[b-5uhraautdx] {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 5px;
}

.metric-value[b-5uhraautdx] {
    font-size: 28px;
    font-weight: 700;
}

.rate-label[b-5uhraautdx] {
    font-size: 16px;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.rate-value[b-5uhraautdx] {
    font-size: 36px;
    font-weight: 800;
}

.total-days .metric-value[b-5uhraautdx] {
    color: #3498db;
}

.present-days .metric-value[b-5uhraautdx] {
    color: #2ecc71;
}

.absent-days .metric-value[b-5uhraautdx] {
    color: #e74c3c;
}

.late-days .metric-value[b-5uhraautdx] {
    color: #f39c12;
}

.attendance-rate[b-5uhraautdx] {
    border-top-color: #3498db;
}

    .attendance-rate .rate-value[b-5uhraautdx] {
        color: #3498db;
    }

.punctuality-rate[b-5uhraautdx] {
    border-top-color: #9b59b6;
}

    .punctuality-rate .rate-value[b-5uhraautdx] {
        color: #9b59b6;
    }

.export-container[b-5uhraautdx] {
    position: absolute;
    bottom: 20px;
    right: 20px;
    text-align: right;
}

.export-excel-btn[b-5uhraautdx] {
    background-color: #217346;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

    .export-excel-btn:hover[b-5uhraautdx] {
        background-color: #1a5f38;
    }

    .export-excel-btn:active[b-5uhraautdx] {
        transform: translateY(1px);
    }

/* ==========================================================
   Attendance Marking
   ========================================================== */

.attendance-marking[b-5uhraautdx] {
    width: 100%;
    gap: 1.5rem;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.student-info[b-5uhraautdx] {
    text-align: center;
}

.student-name[b-5uhraautdx] {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.instruction[b-5uhraautdx] {
    font-size: 1rem;
    color: #666;
}

/* Compact Attendance Buttons */
.compact-attendance-buttons[b-5uhraautdx] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.compact-button[b-5uhraautdx] {
    display: flex;
    align-items: center;
    text-align: left;
    padding: 0.6rem 1rem;
    width: 100%;
    border-radius: 6px;
    border: 1px solid transparent;
    background-color: rgba(255, 255, 255, 0.8);
    transition: all 0.2s ease;
    min-height: auto;
}

    .compact-button i[b-5uhraautdx] {
        font-size: 1.25rem;
        margin-right: 0.8rem;
        width: 24px;
        text-align: center;
    }

.button-text[b-5uhraautdx] {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.button-title[b-5uhraautdx] {
    font-weight: 600;
    font-size: 0.95rem;
    color: inherit;
}

.button-subtitle[b-5uhraautdx] {
    font-size: 0.8rem;
    color: rgba(0, 0, 0, 0.7);
    font-weight: normal;
}

.present-button[b-5uhraautdx] {
    color: #70ad47;
    border-color: #70ad47;
}

.late-button[b-5uhraautdx] {
    color: #ffc000;
    border-color: #ffc000;
}

.absent-button[b-5uhraautdx] {
    color: #ff0000;
    border-color: #ff0000;
}

.compact-button:hover[b-5uhraautdx] {
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.present-button:hover[b-5uhraautdx] {
    background-color: rgba(112, 173, 71, 0.1);
}

.late-button:hover[b-5uhraautdx] {
    background-color: rgba(255, 192, 0, 0.1);
}

.absent-button:hover[b-5uhraautdx] {
    background-color: rgba(255, 0, 0, 0.1);
}

.compact-button.active[b-5uhraautdx] {
    color: white;
}

    .compact-button.active .button-subtitle[b-5uhraautdx] {
        color: rgba(255, 255, 255, 0.9);
    }

.present-button.active[b-5uhraautdx] {
    background-color: #70ad47;
}

.late-button.active[b-5uhraautdx] {
    background-color: #ffc000;
}

.absent-button.active[b-5uhraautdx] {
    background-color: #ff0000;
}

/* Vertical Attendance Buttons */
.attendance-buttons-vertical[b-5uhraautdx] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

    .attendance-buttons-vertical .action-button[b-5uhraautdx] {
        display: flex;
        align-items: center;
        text-align: left;
        padding: 1rem 1.5rem;
        width: 100%;
        border-radius: 6px;
        transition: all 0.2s ease;
    }

        .attendance-buttons-vertical .action-button i[b-5uhraautdx] {
            font-size: 1.5rem;
            margin-right: 1rem;
            min-width: 30px;
        }

        .attendance-buttons-vertical .action-button span[b-5uhraautdx] {
            font-weight: 600;
            font-size: 1.1rem;
            margin-right: auto;
        }

.button-description[b-5uhraautdx] {
    font-size: 0.85rem;
    font-weight: normal;
    color: rgba(0, 0, 0, 0.7);
    margin-top: 0.25rem;
    display: block;
}

.attendance-buttons-vertical .action-button.active[b-5uhraautdx] {
    color: white;
}

    .attendance-buttons-vertical .action-button.active .button-description[b-5uhraautdx] {
        color: rgba(255, 255, 255, 0.9);
    }

.attendance-buttons-vertical .present-button:hover[b-5uhraautdx] {
    background-color: rgba(112, 173, 71, 0.15);
}

.attendance-buttons-vertical .late-button:hover[b-5uhraautdx] {
    background-color: rgba(255, 192, 0, 0.15);
}

.attendance-buttons-vertical .absent-button:hover[b-5uhraautdx] {
    background-color: rgba(255, 0, 0, 0.15);
}

/* ==========================================================
   Term Status Widget & Tooltip
   ========================================================== */

.term-status-widget[b-5uhraautdx] {
    position: relative;
    font-family: 'Segoe UI', system-ui, sans-serif;
    margin-bottom: 20px;
}

.current-term-badge[b-5uhraautdx] {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    border-radius: 8px;
    cursor: default;
    transition: all 0.2s ease;
    position: relative;
    border: 1px solid rgba(0,0,0,0.1);
}

    .current-term-badge:hover[b-5uhraautdx] {
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        transform: translateY(-1px);
    }

    .current-term-badge i[b-5uhraautdx] {
        font-size: 1.4em;
        width: 24px;
        text-align: center;
    }

.term-info[b-5uhraautdx] {
    line-height: 1.3;
}

.term-title[b-5uhraautdx] {
    font-weight: 600;
    font-size: 0.95em;
}

.term-dates[b-5uhraautdx] {
    font-size: 0.85em;
    color: #555;
}

.academic-calendar-tooltip[b-5uhraautdx] {
    position: absolute;
    bottom: 100%;
    left: 0;
    width: 300px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    padding: 15px;
    z-index: 9999;
    margin-bottom: 10px;
    opacity: 0;
    animation: tooltipFadeIn 0.2s ease-out forwards;
    border: 1px solid #eee;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

    .academic-calendar-tooltip.visible[b-5uhraautdx] {
        opacity: 1;
        pointer-events: auto;
    }

    .academic-calendar-tooltip.bottom-tooltip[b-5uhraautdx] {
        top: 100%;
        bottom: auto;
        left: 0;
        margin-top: 8px;
        margin-bottom: 0;
        animation: tooltipFadeInUp-b-5uhraautdx 0.2s ease-out forwards;
    }

        .academic-calendar-tooltip.bottom-tooltip[b-5uhraautdx]::before {
            content: '';
            position: absolute;
            bottom: 100%;
            left: 20px;
            border-width: 8px;
            border-style: solid;
            border-color: transparent transparent white transparent;
            filter: drop-shadow(0 -2px 2px rgba(0,0,0,0.1));
        }

.high-z-index-combo .dxbl-dropdown[b-5uhraautdx] {
    z-index: 9999 !important;
}

.tooltip-header[b-5uhraautdx] {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid #f0f0f0;
}

    .tooltip-header i[b-5uhraautdx] {
        color: #666;
    }

    .tooltip-header h4[b-5uhraautdx] {
        margin: 0;
        font-size: 1em;
        color: #333;
    }

.term-list[b-5uhraautdx] {
    max-height: 400px;
    overflow-y: auto;
    padding-right: 5px;
}

.term-item[b-5uhraautdx] {
    padding: 8px 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    border-bottom: 1px solid #f5f5f5;
}

    .term-item:last-child[b-5uhraautdx] {
        border-bottom: none;
    }

.term-name[b-5uhraautdx] {
    font-weight: 500;
    width: 110px;
    flex-shrink: 0;
}

.term-date-range[b-5uhraautdx] {
    flex-grow: 1;
    font-size: 0.9em;
    color: #666;
}

.term-duration[b-5uhraautdx] {
    font-size: 0.8em;
    color: #999;
    font-style: italic;
    width: 100%;
    margin-top: 3px;
    padding-left: 110px;
}

.is-break[b-5uhraautdx] {
    background-color: #FFF9E6;
    border-radius: 4px;
    margin: 2px -5px;
    padding: 8px 5px;
}

/* Term Status Colours */
.term-status[b-5uhraautdx] {
    background-color: rgba(112, 173, 71, 0.1);
    border-left: 3px solid #70ad47;
}

.holiday-status[b-5uhraautdx] {
    background-color: rgba(255, 192, 0, 0.1);
    border-left: 3px solid #ffc000;
}

.no-term-status[b-5uhraautdx] {
    background-color: rgba(200, 200, 200, 0.1);
    border-left: 3px solid #ccc;
}

/* Scrollbar */
.term-list[b-5uhraautdx]::-webkit-scrollbar {
    width: 6px;
}

.term-list[b-5uhraautdx]::-webkit-scrollbar-thumb {
    background-color: rgba(0,0,0,0.2);
    border-radius: 3px;
}

/* ==========================================================
   Form Elements & Assessment Entry
   ========================================================== */

.form-label-bold[b-5uhraautdx] {
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #444;
    margin-bottom: 0.5rem;
    display: block;
}

.highlight-instruction[b-5uhraautdx] {
    font-weight: 500;
    color: #4a5568;
    font-size: 1rem;
    margin: 0.5rem 0 0;
    padding: 0.5rem;
    background-color: #f8f9fa;
    border-left: 3px solid #4a90e2;
}

.emphasized-group[b-5uhraautdx] {
    margin: 1.25rem 0;
    padding: 1rem;
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.highlighted-result[b-5uhraautdx] {
    font-size: 1.4rem;
    font-weight: 600;
    color: #004fb9;
    padding: 0.75rem;
    background-color: #f8fafd;
    border-radius: 4px;
    border: 1px solid #e1e5eb;
    text-align: center;
}

.student-info-container[b-5uhraautdx] {
    text-align: left;
    margin-bottom: 1.5rem;
}

.student-info-card[b-5uhraautdx] {
    background-color: #fff;
    border-radius: 6px;
    padding: 1rem 1.25rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    border-left: 4px solid #4a90e2;
}

.student-name-highlight[b-5uhraautdx] {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #eaeef2;
}

.emphasized-input .dx-texteditor-input[b-5uhraautdx] {
    font-size: 1.1rem;
    font-weight: 500;
    padding: 0.75rem;
}

/* ==========================================================
   Reading Age & Phase Styling (Literacy + shared)
   ========================================================== */

.reading-age-highlight[b-5uhraautdx] {
    font-weight: bold;
    background-color: #E3F7FF;
    padding: 4px 8px;
    border-radius: 4px;
    border-left: 4px solid #1976D2;
    color: #0D47A1;
    display: inline-block;
}

/* Reading Phase Colour Coding (Task 1 — updated labels) */
.phase-emergent[b-5uhraautdx] {
    background: #FFF3E0;
    color: #E65100;
    border-color: #FF9800;
}

.phase-early[b-5uhraautdx] {
    background: #FFF8E1;
    color: #F57F17;
    border-color: #FFC107;
}

.phase-developing[b-5uhraautdx] {
    background: #E8F5E9;
    color: #2E7D32;
    border-color: #4CAF50;
}

.phase-fluent[b-5uhraautdx] {
    background: #E3F2FD;
    color: #1565C0;
    border-color: #2196F3;
}

.phase-independent-reader[b-5uhraautdx] {
    background: #EDE7F6;
    color: #4527A0;
    border-color: #673AB7;
}

/* Shared phase styling */
.reading-age-highlight[b-5uhraautdx],
[class^="phase-"][b-5uhraautdx] {
    font-weight: bold;
    padding: 4px 8px;
    border-radius: 4px;
    border-left: 4px solid;
    display: inline-block;
}

/* ==========================================================
   Loading & Error
   ========================================================== */

.loading-overlay[b-5uhraautdx] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.spinner-border[b-5uhraautdx] {
    width: 3rem;
    height: 3rem;
}

.absence-reason-modal[b-5uhraautdx] {
    padding: 20px;
}

.modal-buttons[b-5uhraautdx] {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 20px;
}

/* ==========================================================
   Animations
   ========================================================== */

@keyframes tooltipFadeInUp-b-5uhraautdx {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================
   Responsive
   ========================================================== */

@media (max-width: 1200px) {
    .dashboard-container[b-5uhraautdx] {
        grid-template-columns: 1fr;
    }

    .dashboard-double-width[b-5uhraautdx] {
        grid-column: span 1;
    }

    .dashboard-actions[b-5uhraautdx] {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .action-button[b-5uhraautdx] {
        flex: 1 1 200px;
    }

    .education-table th[b-5uhraautdx],
    .education-table td[b-5uhraautdx] {
        width: auto;
        table-layout: auto;
        font-size: 0.85rem;
    }
}

@media (max-width: 1068px) {
    .welcome-grid[b-5uhraautdx] {
        display: block;
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .hide-mobile[b-5uhraautdx] {
        display: none;
    }
}

@media (max-width: 768px) {
    .gender-col[b-5uhraautdx] {
        display: none;
    }

    .education-table th[b-5uhraautdx],
    .education-table td[b-5uhraautdx] {
        padding: 10px 8px;
    }

    .action-button[b-5uhraautdx] {
        flex: 1 1 100%;
        padding: 1rem 0.5rem;
        flex-direction: row;
        gap: 0.75rem;
        justify-content: flex-start;
        padding-left: 1.5rem;
    }

        .action-button i[b-5uhraautdx] {
            margin-bottom: 0;
            font-size: 1.5rem;
        }

    .dropdown-column[b-5uhraautdx] {
        grid-column: 1;
    }

    .dropdown-header[b-5uhraautdx] {
        text-align: center;
    }

    .attendance-buttons-vertical .action-button[b-5uhraautdx] {
        padding: 0.8rem 1rem;
    }

        .attendance-buttons-vertical .action-button i[b-5uhraautdx] {
            font-size: 1.25rem;
            margin-right: 0.75rem;
        }
}
/* ============================================================
   TEMIS — Waddington Numeracy-Specific Styles
   Supplements waddington.css for the numeracy assessment page
   v2.90.0
   ============================================================ */

/* ==========================================================
   Dashboard — Triple Width Card
   ========================================================== */

.dashboard-triple-width[b-5uhraautdx] {
    grid-column: span 3;
    padding: 20px;
}

/* ==========================================================
   Score Grade Colours (Task 1 — updated labels)
   ========================================================== */

.score-below-basic[b-5uhraautdx] {
    background-color: #ffebee;
    color: #c62828;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
}

.score-basic[b-5uhraautdx] {
    background-color: #fff8e1;
    color: #ff8f00;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
}

.score-proficient[b-5uhraautdx] {
    background-color: #e8f5e9;
    color: #2e7d32;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
}

.score-advanced[b-5uhraautdx] {
    background-color: #e3f2fd;
    color: #1565c0;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
}

/* ==========================================================
   Numeracy Score Display (Grid Cells)
   ========================================================== */

.numeracy-score[b-5uhraautdx] {
    display: inline-block;
    min-width: 22px;
    padding: 2px 4px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

.numeracy-total-score[b-5uhraautdx] {
    font-weight: 700;
    font-size: 0.85rem;
}

/* ==========================================================
   Question Entry Grid (Score Entry Form)
   ========================================================== */

.question-grid[b-5uhraautdx] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    padding: 6px 0;
}

.question-item[b-5uhraautdx] {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.8rem;
}

    .question-item label[b-5uhraautdx] {
        min-width: 28px;
        font-weight: 600;
        font-size: 0.75rem;
    }

    .question-item .max-score[b-5uhraautdx] {
        font-size: 0.7rem;
        color: #adb5bd;
    }

/* ==========================================================
   Category Sections (Strand Groupings in Form)
   ========================================================== */

.category-section[b-5uhraautdx] {
    padding: 8px 12px;
    margin-bottom: 6px;
}

    .category-section h4[b-5uhraautdx] {
        font-size: 0.85rem;
        margin-bottom: 4px;
        padding-bottom: 4px;
        border-bottom: 1px solid #eee;
    }

    .category-section:nth-child(2)[b-5uhraautdx] {
        border-left-color: #06D6A0;
    }

    .category-section:nth-child(3)[b-5uhraautdx] {
        border-left-color: #FFD166;
    }

    .category-section:nth-child(4)[b-5uhraautdx] {
        border-left-color: #EF476F;
    }

    .category-section:nth-child(5)[b-5uhraautdx] {
        border-left-color: #073B4C;
    }

    .category-section:nth-child(6)[b-5uhraautdx] {
        border-left-color: #8338EC;
    }

    .category-section:nth-child(7)[b-5uhraautdx] {
        border-left-color: #FF6B6B;
    }

/* ==========================================================
   Assessment Detail Form
   ========================================================== */

.assessment-detail-form[b-5uhraautdx] {
    padding: 10px;
}

.assessment-header[b-5uhraautdx] {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e9ecef;
}

.compact-categories[b-5uhraautdx] {
    padding: 0;
}

.form-actions[b-5uhraautdx] {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
}

.cancel-button[b-5uhraautdx] {
    background-color: #6c757d;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
}

    .cancel-button:hover[b-5uhraautdx] {
        background-color: #5a6268;
    }

/* ==========================================================
   Responsive — Numeracy Specific
   ========================================================== */

@media (max-width: 1200px) {
    .dashboard-triple-width[b-5uhraautdx] {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .compact-categories[b-5uhraautdx] {
        grid-template-columns: 1fr;
    }

    .question-grid[b-5uhraautdx] {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* =============================================================
   EDIT MODE — STRAND CARD GRID LAYOUT
   ============================================================= */

/* Header bar */
.edit-header[b-5uhraautdx] {
    background: white;
    padding: 12px 20px;
    border-radius: 8px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-left: 4px solid #4285f4;
}

    .edit-header h3[b-5uhraautdx] {
        margin: 0;
        font-size: 1.1rem;
    }

.edit-header-sub[b-5uhraautdx] {
    font-weight: 400;
    color: #6c757d;
    font-size: 0.9rem;
}

.edit-header-meta[b-5uhraautdx] {
    font-size: 0.8rem;
    color: #6c757d;
}

/* 4-column strand grid */
.strand-grid[b-5uhraautdx] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 10px;
    padding-bottom: 70px;
}

.strand-card[b-5uhraautdx] {
    background: white;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Subtle strand header */
.strand-header[b-5uhraautdx] {
    padding: 7px 12px;
    font-weight: 600;
    font-size: 0.78rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
}

.strand-name[b-5uhraautdx] {
    display: flex;
    align-items: center;
    gap: 6px;
}

.accent-dot[b-5uhraautdx] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.strand-max-label[b-5uhraautdx] {
    font-weight: 400;
    font-size: 0.7rem;
    color: #999;
}

/* 8 colour cycle — subtle tinted headers */
.strand-colour-0 .strand-header[b-5uhraautdx] {
    background: #dbe8ff;
    color: #1a56b8;
}

.strand-colour-0 .accent-dot[b-5uhraautdx] {
    background: #2b6ed4;
}

.strand-colour-1 .strand-header[b-5uhraautdx] {
    background: #d4f0df;
    color: #1a7a35;
}

.strand-colour-1 .accent-dot[b-5uhraautdx] {
    background: #28833e;
}

.strand-colour-2 .strand-header[b-5uhraautdx] {
    background: #fef0c7;
    color: #8a6d00;
}

.strand-colour-2 .accent-dot[b-5uhraautdx] {
    background: #c99a00;
}

.strand-colour-3 .strand-header[b-5uhraautdx] {
    background: #fddcdc;
    color: #b52a2a;
}

.strand-colour-3 .accent-dot[b-5uhraautdx] {
    background: #d43333;
}

.strand-colour-4 .strand-header[b-5uhraautdx] {
    background: #e8d8f8;
    color: #6a1b9a;
}

.strand-colour-4 .accent-dot[b-5uhraautdx] {
    background: #7b1fa2;
}

.strand-colour-5 .strand-header[b-5uhraautdx] {
    background: #d0f0f5;
    color: #00717e;
}

.strand-colour-5 .accent-dot[b-5uhraautdx] {
    background: #00838f;
}

.strand-colour-6 .strand-header[b-5uhraautdx] {
    background: #fbe4cc;
    color: #b35c10;
}

.strand-colour-6 .accent-dot[b-5uhraautdx] {
    background: #d4700e;
}

.strand-colour-7 .strand-header[b-5uhraautdx] {
    background: #dce8d0;
    color: #3d6420;
}

.strand-colour-7 .accent-dot[b-5uhraautdx] {
    background: #4a7c28;
}

/* Strand body — question rows */
.strand-body[b-5uhraautdx] {
    padding: 6px 10px;
    flex: 1;
}

.q-row[b-5uhraautdx] {
    display: flex;
    align-items: center;
    padding: 3px 0;
    font-size: 0.8rem;
}

.q-label[b-5uhraautdx] {
    font-weight: 600;
    color: #444;
    min-width: 36px;
    font-size: 0.85rem;
}

.q-max[b-5uhraautdx] {
    font-size: 0.78rem;
    color: #888;
    margin-left: 5px;
    font-weight: 500;
}

.strand-score-input[b-5uhraautdx] {
    width: 52px;
    max-width: 52px;
    text-align: center;
    border: 1px solid #ced4da;
    border-radius: 4px;
    padding: 4px 2px;
    font-size: 0.9rem;
    font-weight: 600;
    height: 32px;
    -moz-appearance: textfield;
    appearance: textfield;
}


    .strand-score-input:focus[b-5uhraautdx] {
        outline: none;
        border-color: #4285f4;
        box-shadow: 0 0 0 2px rgba(66, 133, 244, 0.15);
    }

    /* Keep spin buttons but compact */
    .strand-score-input[b-5uhraautdx]::-webkit-inner-spin-button,
    .strand-score-input[b-5uhraautdx]::-webkit-outer-spin-button {
        opacity: 1;
        height: 24px;
    }

/* Strand footer — running total */
.strand-footer[b-5uhraautdx] {
    padding: 5px 12px;
    background: #fafafa;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1px;
    font-size: 0.82rem;
    border-top: 1px solid #eee;
}

.running-total[b-5uhraautdx] {
    font-weight: 700;
    color: #333;
    font-size: 0.9rem;
}

.running-max[b-5uhraautdx] {
    font-weight: 400;
    color: #888;
    font-size: 0.9rem;
}

/* Summary bar */
.edit-summary-bar[b-5uhraautdx] {
    position: fixed;
    bottom: 0;
    left: 250px;
    right: 0;
    background: white;
    border-radius: 0;
    padding: 10px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    font-size: 0.9rem;
    border-top: 2px solid #e9ecef;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.08);
    z-index: 100;
}

.summary-total[b-5uhraautdx] {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.summary-score[b-5uhraautdx] {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
}

.summary-max[b-5uhraautdx] {
    font-size: 0.9rem;
    color: #999;
}

.summary-pct[b-5uhraautdx] {
    font-size: 1.1rem;
    font-weight: 600;
    color: #4285f4;
}

.summary-grade[b-5uhraautdx] {
    padding: 4px 14px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.82rem;
}

/* Summary bar buttons */
.edit-summary-bar .btn-save[b-5uhraautdx] {
    padding: 7px 20px;
    border: none;
    border-radius: 6px;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    background: #34a853;
    color: white;
}

    .edit-summary-bar .btn-save:hover[b-5uhraautdx] {
        background: #2d9249;
    }

    .edit-summary-bar .btn-save:disabled[b-5uhraautdx] {
        background: #a0d8b0;
        cursor: not-allowed;
    }

.edit-summary-bar .btn-cancel[b-5uhraautdx] {
    padding: 7px 20px;
    border: none;
    border-radius: 6px;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    background: #e9ecef;
    color: #495057;
}

    .edit-summary-bar .btn-cancel:hover[b-5uhraautdx] {
        background: #dee2e6;
    }

/* Responsive — 2 columns on narrow screens */
@media (max-width: 900px) {
    .strand-grid[b-5uhraautdx] {
        grid-template-columns: repeat(2, 1fr);
        padding-bottom: 90px;
    }

    .edit-header[b-5uhraautdx] {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .edit-summary-bar[b-5uhraautdx] {
        padding: 8px 12px;
        gap: 12px;
        flex-wrap: wrap;
        left: 0;
    }

    .summary-score[b-5uhraautdx] {
        font-size: 1.1rem;
    }

    .summary-pct[b-5uhraautdx] {
        font-size: 0.95rem;
    }

    .edit-summary-bar .btn-save[b-5uhraautdx],
    .edit-summary-bar .btn-cancel[b-5uhraautdx] {
        padding: 6px 14px;
        font-size: 0.78rem;
    }
}

.resume-banner[b-5uhraautdx] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    margin-bottom: 12px;
    background: #e8f4fd;
    border: 1px solid #b6ddf3;
    border-left: 4px solid #004fb9;
    border-radius: 6px;
    font-size: 0.88rem;
    color: #1a5276;
}

    .resume-banner i[b-5uhraautdx] {
        color: #004fb9;
        flex-shrink: 0;
    }

.resume-btn[b-5uhraautdx] {
    margin-left: auto;
    padding: 5px 14px;
    background: #004fb9;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    transition: background 0.2s;
}

    .resume-btn:hover[b-5uhraautdx] {
        background: #2468c7;
        color: white;
    }

.resume-dismiss[b-5uhraautdx] {
    background: none;
    border: none;
    color: #6c757d;
    cursor: pointer;
    font-size: 1rem;
    padding: 2px 6px;
}

    .resume-dismiss:hover[b-5uhraautdx] {
        color: #333;
    }

/* ============================================================
   UNSAVED SCORES FEEDBACK
   Add to waddington_numeracy.razor.css
   ============================================================ */

/* ---- Warning banner ---- */
.unsaved-banner[b-5uhraautdx] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    margin-bottom: 12px;
    background: #fff8e1;
    border: 1px solid #ffe082;
    border-left: 4px solid #ffa000;
    border-radius: 6px;
    font-size: 0.85rem;
    color: #5d4037;
    animation: fadeSlideIn-b-5uhraautdx 0.3s ease-out;
}

    .unsaved-banner i[b-5uhraautdx] {
        color: #f57c00;
        font-size: 1.1rem;
        flex-shrink: 0;
    }

/* ---- Modified score input styling ---- */
.strand-score-input.score-modified[b-5uhraautdx] {
    border-color: #f57c00;
    background-color: #fff8e1;
    box-shadow: 0 0 0 2px rgba(245, 124, 0, 0.15);
}

    .strand-score-input.score-modified:focus[b-5uhraautdx] {
        border-color: #e65100;
        box-shadow: 0 0 0 2px rgba(230, 81, 0, 0.2);
    }

/* ---- Subtle entrance animation ---- */
@keyframes fadeSlideIn-b-5uhraautdx {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* /Components/Shared/TemisDataGrid.razor.rz.scp.css */
/* ============================================================================
   TemisDataGrid — Scoped CSS
   Location: Components/Shared/TemisDataGrid.razor.css
   
   Matches ReportingHub.razor.css design tokens and patterns.
   Uses rh- compatible values but tg- prefixed selectors.
   ============================================================================ */

/* ═══════════ Panel Container ═══════════ */
.tg-panel[b-7tz656fdx0] {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

/* ═══════════ Panel Header ═══════════ */
.tg-panel-header[b-7tz656fdx0] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.85rem 1.25rem;
    border-bottom: 1px solid #e9ecef;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tg-panel-header h3[b-7tz656fdx0] {
    font-size: 0.92rem;
    font-weight: 600;
    color: #495057;
    margin: 0;
}

.tg-toolbar[b-7tz656fdx0] {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}

/* ═══════════ Column Toggles ═══════════ */
.tg-col-toggles[b-7tz656fdx0] {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}

.tg-col-chip[b-7tz656fdx0] {
    padding: 4px 10px;
    border: 1px solid #e9ecef;
    border-radius: 14px;
    font-size: 0.72rem;
    font-weight: 500;
    color: #6c757d;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.15s;
    background: white;
}

.tg-col-chip:hover[b-7tz656fdx0] {
    border-color: #00838f;
    color: #00838f;
}

.tg-col-chip.active[b-7tz656fdx0] {
    background: #e0f2f3;
    border-color: #00838f;
    color: #00838f;
    font-weight: 600;
}

/* ═══════════ Export Button ═══════════ */
.tg-btn-export[b-7tz656fdx0] {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    border: 1px solid #1d6f42;
    background: #1d6f42;
    border-radius: 6px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.15s;
    white-space: nowrap;
}

.tg-btn-export:hover:not(:disabled)[b-7tz656fdx0] { background: #165a36; }
.tg-btn-export:disabled[b-7tz656fdx0] { opacity: 0.5; cursor: not-allowed; }
.tg-btn-export svg[b-7tz656fdx0] { stroke: #fff; }

/* ═══════════ Search Bar ═══════════ */
.tg-search-bar[b-7tz656fdx0] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0.65rem 1.25rem;
    border-bottom: 1px solid #f1f3f5;
    background: #fcfcfd;
}

.tg-search-bar svg[b-7tz656fdx0] { color: #adb5bd; flex-shrink: 0; }

.tg-search-input[b-7tz656fdx0] {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-size: 0.85rem;
    font-family: inherit;
    color: #1a1a2e;
}

.tg-search-input[b-7tz656fdx0]::placeholder { color: #adb5bd; }

.tg-search-clear[b-7tz656fdx0] {
    border: none;
    background: transparent;
    color: #adb5bd;
    font-size: 1rem;
    cursor: pointer;
    padding: 2px 6px;
    border-radius: 4px;
    transition: all 0.15s;
    line-height: 1;
}

.tg-search-clear:hover[b-7tz656fdx0] { background: #f1f3f5; color: #6c757d; }

/* ═══════════ Table ═══════════ */
.tg-table-wrap[b-7tz656fdx0] {
    overflow-x: auto;
}

.tg-table[b-7tz656fdx0] {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.82rem;
}

.tg-table thead th[b-7tz656fdx0] {
    background: #f8f9fa;
    color: #495057;
    font-weight: 600;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    padding: 0.6rem 0.5rem;
    border-bottom: 2px solid #e9ecef;
    text-align: left;
    white-space: nowrap;
    user-select: none;
    transition: background 0.15s;
}

    .tg-table td[b-7tz656fdx0], .tg-table th[b-7tz656fdx0] {
        max-width: 0;
    }

    .tg-table td[b-7tz656fdx0] {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 1200px) {
    .att-medium-hide tg-sortable[b-7tz656fdx0] {
        display: none !important;
    }
}

@media (max-width: 900px) {
    .att-tablet-hide tg-sortable[b-7tz656fdx0] {
        display: none !important;
    }
}

@media (max-width: 600px) {
    .att-phone-hide tg-sortable[b-7tz656fdx0] {
        display: none !important;
    }
}

.tg-sortable[b-7tz656fdx0] {
    cursor: pointer;
}
.tg-sortable:hover[b-7tz656fdx0] { background: #eef0f3; }

.tg-table tbody td[b-7tz656fdx0] {
    padding: 0.55rem 0.5rem;
    border-bottom: 1px solid #f5f5f5;
    color: #1a1a2e;
}

/* Row states */
.tg-row-clickable[b-7tz656fdx0] { cursor: pointer; transition: background 0.15s; }
.tg-row-clickable:hover[b-7tz656fdx0] { background: rgba(0, 131, 143, 0.04); }

.tg-row-selected[b-7tz656fdx0] {
    background: rgba(0, 131, 143, 0.1) !important;
    border-left: 3px solid #00838f;
}

.tg-row-selected td:first-child[b-7tz656fdx0] {
    padding-left: calc(0.5rem - 3px);
}

/* REPLACE the old sort icon styles with: */
.tg-sort-arrows[b-7tz656fdx0] {
    display: inline-flex;
    flex-direction: column;
    gap: 1px;
    vertical-align: middle;
    margin-left: 4px;
}

.tg-arrow-up[b-7tz656fdx0], .tg-arrow-down[b-7tz656fdx0] {
    width: 0;
    height: 0;
    border-left: 3.5px solid transparent;
    border-right: 3.5px solid transparent;
}

.tg-arrow-up[b-7tz656fdx0] {
    border-bottom: 4px solid #ced4da;
}

.tg-arrow-down[b-7tz656fdx0] {
    border-top: 4px solid #ced4da;
}

.tg-arrow-up.active[b-7tz656fdx0] {
    border-bottom-color: #00838f;
}

.tg-arrow-down.active[b-7tz656fdx0] {
    border-top-color: #00838f;
}
/* ═══════════ Footer ═══════════ */
.tg-footer[b-7tz656fdx0] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.65rem 1.25rem;
    border-top: 1px solid #e9ecef;
    font-size: 0.78rem;
    color: #6c757d;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tg-count[b-7tz656fdx0] { white-space: nowrap; }

.tg-filter-tag[b-7tz656fdx0] {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 600;
    background: #e0f2f3;
    color: #00838f;
    padding: 1px 6px;
    border-radius: 3px;
    margin-left: 4px;
    vertical-align: middle;
}

.tg-pagination[b-7tz656fdx0] {
    display: flex;
    align-items: center;
    gap: 4px;
}

.tg-page-btn[b-7tz656fdx0] {
    padding: 4px 8px;
    border: 1px solid #e9ecef;
    background: white;
    border-radius: 4px;
    font-size: 0.78rem;
    cursor: pointer;
    transition: all 0.15s;
    font-family: inherit;
    color: #6c757d;
}

.tg-page-btn:hover:not(:disabled)[b-7tz656fdx0] { border-color: #00838f; color: #00838f; }
.tg-page-btn:disabled[b-7tz656fdx0] { opacity: 0.3; cursor: not-allowed; }

.tg-page-info[b-7tz656fdx0] {
    font-size: 0.78rem;
    color: #6c757d;
    padding: 0 6px;
    white-space: nowrap;
}

.tg-hint[b-7tz656fdx0] {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #00838f;
    background: rgba(0,131,143,0.08);
    padding: 5px 10px;
    border-radius: 14px;
    border: 1px solid rgba(0,131,143,0.15);
}

/* ═══════════ Loading & Empty States ═══════════ */
.tg-loading[b-7tz656fdx0] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 3rem;
    color: #6c757d;
    font-size: 0.85rem;
}

.tg-spinner[b-7tz656fdx0] {
    width: 28px;
    height: 28px;
    border: 3px solid #e9ecef;
    border-top: 3px solid #00838f;
    border-radius: 50%;
    animation: tg-spin-b-7tz656fdx0 0.8s linear infinite;
}

@keyframes tg-spin-b-7tz656fdx0 { to { transform: rotate(360deg); } }

.tg-empty[b-7tz656fdx0] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 3rem;
    color: #adb5bd;
    font-size: 0.85rem;
}

/* ═══════════ Responsive ═══════════ */
@media (max-width: 768px) {
    .tg-panel-header[b-7tz656fdx0] { flex-direction: column; align-items: flex-start; }
    .tg-table[b-7tz656fdx0] { font-size: 0.75rem; }
    .tg-table thead th[b-7tz656fdx0] { font-size: 0.65rem; padding: 0.4rem; }
    .tg-table tbody td[b-7tz656fdx0] { padding: 0.4rem; }
    .tg-footer[b-7tz656fdx0] { flex-direction: column; align-items: flex-start; }
}
