/* _content/Bliik.Supervisor.Web/Components/Evaluations/ChildMedicalContextPanel.razor.rz.scp.css */
/* Medical Context Panel Styling */

.medical-context-panel[b-lca867x8xv] {
    height: 100%;
}

.medical-context-panel .card[b-lca867x8xv] {
    position: sticky;
    top: 20px;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    border: none;
}

.medical-context-panel .card-body[b-lca867x8xv] {
    padding: 1rem;
}

/* Child Info Section */
.child-info h6[b-lca867x8xv] {
    font-size: 1rem;
    font-weight: 600;
    color: #495057;
}

/* Critical Alerts */
.critical-alerts .alert[b-lca867x8xv] {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    border-left: 4px solid;
    animation: slideIn-b-lca867x8xv 0.3s ease-out;
}

.critical-alerts .alert-danger[b-lca867x8xv] {
    border-left-color: #dc3545;
}

.critical-alerts .alert-warning[b-lca867x8xv] {
    border-left-color: #ffc107;
}

/* Medical Sections */
.medical-section[b-lca867x8xv] {
    animation: fadeIn-b-lca867x8xv 0.3s ease-in;
}

.medical-section .section-header[b-lca867x8xv] {
    padding: 0.5rem 0;
    transition: background-color 0.2s ease;
}

.medical-section .section-header:hover[b-lca867x8xv] {
    background-color: #f8f9fa;
    border-radius: 4px;
}

.medical-section .section-header h6[b-lca867x8xv] {
    font-size: 0.95rem;
    font-weight: 600;
    color: #495057;
}

.medical-section .section-content[b-lca867x8xv] {
    animation: expandDown-b-lca867x8xv 0.3s ease-out;
}

/* Item Styling */
.allergy-item[b-lca867x8xv],
.medication-item[b-lca867x8xv],
.condition-item[b-lca867x8xv],
.provider-item[b-lca867x8xv] {
    font-size: 0.875rem;
    background-color: #fff;
    transition: all 0.2s ease;
}

.allergy-item:hover[b-lca867x8xv],
.medication-item:hover[b-lca867x8xv],
.condition-item:hover[b-lca867x8xv],
.provider-item:hover[b-lca867x8xv] {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}

.medication-item.border-warning[b-lca867x8xv],
.condition-item.border-warning[b-lca867x8xv] {
    border-left-width: 4px !important;
}

/* Badge Styling */
.badge[b-lca867x8xv] {
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
}

/* Details/Summary Styling */
details[b-lca867x8xv] {
    cursor: pointer;
}

details summary[b-lca867x8xv] {
    color: #6c757d;
    font-weight: 500;
}

details summary:hover[b-lca867x8xv] {
    color: #495057;
}

details[open] summary[b-lca867x8xv] {
    margin-bottom: 0.5rem;
    color: #495057;
}

/* Alert Styling */
.alert[b-lca867x8xv] {
    font-size: 0.875rem;
    border-radius: 0.375rem;
}

.alert-heading[b-lca867x8xv] {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

/* Loading State */
.spinner-border[b-lca867x8xv] {
    width: 2rem;
    height: 2rem;
}

/* Animations */
@keyframes fadeIn-b-lca867x8xv {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn-b-lca867x8xv {
    from {
        transform: translateX(-10px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes expandDown-b-lca867x8xv {
    from {
        opacity: 0;
        max-height: 0;
    }
    to {
        opacity: 1;
        max-height: 1000px;
    }
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .medical-context-panel .card[b-lca867x8xv] {
        position: relative;
        top: 0;
        max-height: none;
        margin-bottom: 1rem;
    }
}

/* Print Styling */
@media print {
    .medical-context-panel[b-lca867x8xv] {
        display: none;
    }
}

/* Scrollbar Styling (for webkit browsers) */
.medical-context-panel .card[b-lca867x8xv]::-webkit-scrollbar {
    width: 6px;
}

.medical-context-panel .card[b-lca867x8xv]::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.medical-context-panel .card[b-lca867x8xv]::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 3px;
}

.medical-context-panel .card[b-lca867x8xv]::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Icon Spacing */
.bi[b-lca867x8xv] {
    vertical-align: baseline;
}

/* Group Styling */
.small.text-muted.fw-bold[b-lca867x8xv] {
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.75rem;
    margin-bottom: 0.25rem;
}
/* _content/Bliik.Supervisor.Web/Components/Layout/MainLayout.razor.rz.scp.css */
/* Component-specific styles for MainLayout */
/* Most styles are in app.css for consistency with Families module */

.user-menu[b-dazgvu3gw8] {
    display: flex;
    align-items: center;
}

.user-info[b-dazgvu3gw8] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-right: 0.5rem;
}

.user-info .text-muted[b-dazgvu3gw8] {
    font-size: 0.875rem;
}
/* _content/Bliik.Supervisor.Web/Components/Layout/NavMenu.razor.rz.scp.css */
/* Component-specific styles for NavMenu */
/* Most styles are in app.css for consistency with Families module */
/* _content/Bliik.Supervisor.Web/Components/Pages/Reports/AssessmentReport.razor.rz.scp.css */
/* Loading Overlay */
.loading-overlay[b-lfbla15zrv] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn-b-lfbla15zrv 0.3s ease-in;
}

.loading-content[b-lfbla15zrv] {
    padding: 3rem;
    background-color: white;
    border-radius: 1rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 90%;
}

/* Spinner customization */
.spinner-border-lg[b-lfbla15zrv] {
    border-width: 0.3em;
}

/* Progress bar enhancement */
.progress[b-lfbla15zrv] {
    height: 8px;
    background-color: #f0f0f0;
    border-radius: 4px;
}

.progress-bar[b-lfbla15zrv] {
    background: linear-gradient(90deg, #0d6efd 0%, #0a58ca 100%);
}

/* Animations */
@keyframes fadeIn-b-lfbla15zrv {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Multi-line loading message support */
.loading-content p[b-lfbla15zrv] {
    white-space: pre-line;
}

/* Report sections animation */
.card[b-lfbla15zrv] {
    animation: slideUp-b-lfbla15zrv 0.4s ease-out;
}

@keyframes slideUp-b-lfbla15zrv {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Accordion animation improvements */
.accordion-button:not(.collapsed)[b-lfbla15zrv] {
    background-color: rgba(13, 110, 253, 0.05);
}

.accordion-collapse[b-lfbla15zrv] {
    transition: height 0.35s ease;
}

/* Table hover effects */
.table-hover tbody tr:hover[b-lfbla15zrv] {
    background-color: rgba(13, 110, 253, 0.02);
    transition: background-color 0.2s;
}

/* Red flag row enhancement */
tr.table-danger[b-lfbla15zrv] {
    background-color: rgba(220, 53, 69, 0.05);
}

tr.table-danger:hover[b-lfbla15zrv] {
    background-color: rgba(220, 53, 69, 0.1);
}

/* Button loading state */
button:disabled[b-lfbla15zrv] {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Session selector enhancement */
.form-select:focus[b-lfbla15zrv] {
    border-color: #86b7fe;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* Alert animations */
.alert[b-lfbla15zrv] {
    animation: slideDown-b-lfbla15zrv 0.3s ease-out;
}

@keyframes slideDown-b-lfbla15zrv {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* _content/Bliik.Supervisor.Web/Components/Shared/HeaderHero.razor.rz.scp.css */
/**
 * HeaderHero Component Scoped Styles
 * Bliik Supervisors - Hero Header Component
 *
 * Design System: Monochromatic Teal Gradient
 * Version: 1.0.0
 * Last Updated: 2025-10-09
 */

/* ========================================
   BREADCRUMB NAVIGATION
   ======================================== */

.breadcrumb-nav[b-7i38a51sum] {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.breadcrumb-nav a[b-7i38a51sum] {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color var(--transition-fast);
}

.breadcrumb-nav a:hover[b-7i38a51sum] {
    color: rgba(255, 255, 255, 1);
    text-decoration: underline;
}

.breadcrumb-nav span[b-7i38a51sum] {
    margin: 0 0.5rem;
    opacity: 0.7;
    color: rgba(255, 255, 255, 0.7);
}

/* ========================================
   WELCOME CONTENT
   ======================================== */

.welcome-content[b-7i38a51sum] {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 1;
    margin-bottom: 2rem;
}

.welcome-content i[b-7i38a51sum] {
    font-size: 1.75rem;
    opacity: 0.95;
    color: rgba(255, 255, 255, 0.95);
    flex-shrink: 0;
}

/* ========================================
   RESPONSIVE ADJUSTMENTS
   ======================================== */

@media (max-width: 768px) {
    .welcome-content[b-7i38a51sum] {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .welcome-content i[b-7i38a51sum] {
        font-size: 1.5rem;
    }

    .breadcrumb-nav[b-7i38a51sum] {
        margin-bottom: 0.75rem;
    }
}

@media (max-width: 480px) {
    .welcome-content i[b-7i38a51sum] {
        font-size: 1.25rem;
    }
}
/* _content/Bliik.Supervisor.Web/Components/Shared/UnderConstruction.razor.rz.scp.css */
/* Under Construction Page Styles */

.under-construction[b-wp9cc05fz5] {
    min-height: calc(100vh - 100px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-2xl);
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--teal-50) 100%);
}

.under-construction-content[b-wp9cc05fz5] {
    max-width: 600px;
    text-align: center;
    animation: fadeInUp-b-wp9cc05fz5 0.6s ease-out;
}

/* Construction Icon */
.construction-icon[b-wp9cc05fz5] {
    margin: 0 auto var(--spacing-xl);
    animation: bounce-b-wp9cc05fz5 2s infinite;
}

.construction-icon svg[b-wp9cc05fz5] {
    filter: drop-shadow(var(--shadow-teal-md));
}

/* Title */
.construction-title[b-wp9cc05fz5] {
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Feature Badge */
.feature-badge[b-wp9cc05fz5] {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-lg);
    background: white;
    border: 2px solid var(--teal-200);
    border-radius: var(--radius-full);
    color: var(--teal-700);
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--spacing-lg);
    box-shadow: var(--shadow-sm);
}

.feature-badge svg[b-wp9cc05fz5] {
    width: 16px;
    height: 16px;
    stroke: var(--teal-600);
}

/* Description */
.construction-description[b-wp9cc05fz5] {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: var(--line-height-relaxed);
    margin-bottom: var(--spacing-xl);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Coming Soon Badge */
.coming-soon-badge[b-wp9cc05fz5] {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-lg);
    background: var(--primary-gradient);
    color: white;
    border-radius: var(--radius-full);
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--spacing-xl);
    box-shadow: var(--shadow-teal-md);
    animation: pulse-b-wp9cc05fz5 2s infinite;
}

.coming-soon-badge svg[b-wp9cc05fz5] {
    width: 20px;
    height: 20px;
}

/* Back to Home Button */
.btn-back-home[b-wp9cc05fz5] {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-xl);
    background: white;
    color: var(--primary-teal);
    border: 2px solid var(--primary-teal);
    border-radius: var(--radius-lg);
    font-size: 1rem;
    font-weight: var(--font-weight-semibold);
    cursor: pointer;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.btn-back-home:hover[b-wp9cc05fz5] {
    background: var(--primary-teal);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-teal-md);
}

.btn-back-home:active[b-wp9cc05fz5] {
    transform: translateY(0);
}

.btn-back-home svg[b-wp9cc05fz5] {
    width: 20px;
    height: 20px;
    transition: transform var(--transition-base);
}

.btn-back-home:hover svg[b-wp9cc05fz5] {
    transform: translateX(-4px);
}

/* Progress Indicator */
.progress-indicator[b-wp9cc05fz5] {
    margin-top: var(--spacing-2xl);
}

.progress-dots[b-wp9cc05fz5] {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
}

.progress-dots .dot[b-wp9cc05fz5] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary-teal);
    animation: dotPulse-b-wp9cc05fz5 1.5s infinite;
    opacity: 0.3;
}

.progress-dots .dot:nth-child(1)[b-wp9cc05fz5] {
    animation-delay: 0s;
}

.progress-dots .dot:nth-child(2)[b-wp9cc05fz5] {
    animation-delay: 0.2s;
}

.progress-dots .dot:nth-child(3)[b-wp9cc05fz5] {
    animation-delay: 0.4s;
}

/* Animations */
@keyframes fadeInUp-b-wp9cc05fz5 {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce-b-wp9cc05fz5 {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse-b-wp9cc05fz5 {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.9;
        transform: scale(1.02);
    }
}

@keyframes dotPulse-b-wp9cc05fz5 {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .under-construction[b-wp9cc05fz5] {
        padding: var(--spacing-xl);
    }

    .construction-title[b-wp9cc05fz5] {
        font-size: 2rem;
    }

    .construction-description[b-wp9cc05fz5] {
        font-size: 1rem;
    }

    .construction-icon svg[b-wp9cc05fz5] {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 480px) {
    .construction-title[b-wp9cc05fz5] {
        font-size: 1.75rem;
    }

    .feature-badge[b-wp9cc05fz5] {
        font-size: 0.875rem;
    }

    .btn-back-home[b-wp9cc05fz5] {
        width: 100%;
        justify-content: center;
    }
}
