/* /Components/Appointments/AppointmentStatusChip.razor.rz.scp.css */
.appointment-status-chip[b-9vedkbtlp2] {
    font-weight: 500;
    font-size: 0.75rem;
}

.appointment-status-chip.scheduled[b-9vedkbtlp2] {
    background: #ebf5fb !important;
    color: #2980b9 !important;
}

.appointment-status-chip.confirmed[b-9vedkbtlp2] {
    background: #d5f4e6 !important;
    color: #27ae60 !important;
}

.appointment-status-chip.in-progress[b-9vedkbtlp2] {
    background: #fef5e7 !important;
    color: #f39c12 !important;
}

.appointment-status-chip.completed[b-9vedkbtlp2] {
    background: #eaeded !important;
    color: #7f8c8d !important;
}

.appointment-status-chip.cancelled[b-9vedkbtlp2] {
    background: #fadbd8 !important;
    color: #e74c3c !important;
}
/* /Components/Appointments/AppointmentTimeSlot.razor.rz.scp.css */
.time-slot-chip[b-v28o3esmhh] {
    margin: 0.25rem;
    height: auto !important;
    min-height: 48px;
    padding: 0.5rem;
}

.time-slot-content[b-v28o3esmhh] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.125rem;
}

.time-display[b-v28o3esmhh] {
    font-weight: 600;
    font-size: 0.875rem;
}

.duration-display[b-v28o3esmhh] {
    font-size: 0.75rem;
    opacity: 0.7;
}

.time-slot-chip.unavailable[b-v28o3esmhh] {
    opacity: 0.5;
    background-color: #f5f5f5 !important;
    color: #999 !important;
    cursor: not-allowed;
}

.time-slot-chip.selected[b-v28o3esmhh] {
    box-shadow: 0 2px 8px rgba(33, 150, 243, 0.3);
    transform: translateY(-1px);
}

.time-slot-chip.available:hover:not(.selected)[b-v28o3esmhh] {
    background-color: rgba(33, 150, 243, 0.08) !important;
    transform: translateY(-1px);
    transition: all 0.2s ease;
}
/* /Components/Offline/InstallPwaPrompt.razor.rz.scp.css */
/* Epic #2320 Phase 4 - MC#27: Install PWA Prompt Styles */

.pwa-install-prompt[b-a44hzlgutz] {
    position: fixed;
    bottom: 16px;
    left: 16px;
    right: 16px;
    max-width: 600px;
    margin: 0 auto;
    z-index: 1200;
    border-radius: 8px !important;
    animation: slideUp-b-a44hzlgutz 0.3s ease-out;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

@keyframes slideUp-b-a44hzlgutz {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive adjustments for mobile */
@media (max-width: 600px) {
    .pwa-install-prompt[b-a44hzlgutz] {
        left: 8px;
        right: 8px;
        bottom: 8px;
    }

    .pwa-install-prompt .d-flex[b-a44hzlgutz] {
        flex-direction: column;
        text-align: center;
        gap: 12px !important;
    }

    .pwa-install-prompt .flex-grow-1[b-a44hzlgutz] {
        width: 100%;
    }
}
/* /Components/Offline/OfflineStatusBanner.razor.rz.scp.css */
/* CliniqOne PWA - Offline Status Banner Styles */
/* Epic #2320 - Phase 2: Offline Infrastructure */

.offline-status-banner[b-5vvn8bias0] {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1300;
    border-radius: 0 !important;
    padding: 8px 16px;
    font-size: 0.875rem;
}

/* Offline banner - Warning yellow */
.offline-banner[b-5vvn8bias0] {
    background-color: #fff3cd !important;
    border-top: 2px solid #ffc107;
}

.offline-banner .offline-text[b-5vvn8bias0] {
    font-weight: 500;
    color: #856404;
}

.offline-banner .pending-badge[b-5vvn8bias0] {
    background-color: #856404;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    margin-left: 8px;
}

/* Sync banner - Info blue */
.sync-banner[b-5vvn8bias0] {
    background-color: #cce5ff !important;
    border-top: 2px solid #2196f3;
}

.sync-banner .sync-text[b-5vvn8bias0] {
    font-weight: 500;
    color: #004085;
}

.sync-banner .sync-progress[b-5vvn8bias0] {
    color: #004085;
    font-size: 0.75rem;
}

/* Error banner - Danger red */
.error-banner[b-5vvn8bias0] {
    background-color: #f8d7da !important;
    border-top: 2px solid #f44336;
}

.error-banner .error-text[b-5vvn8bias0] {
    font-weight: 500;
    color: #721c24;
}

/* Success banner - Success green */
.success-banner[b-5vvn8bias0] {
    background-color: #d4edda !important;
    border-top: 2px solid #4caf50;
    animation: slideUp-b-5vvn8bias0 0.3s ease-out;
}

.success-banner .success-text[b-5vvn8bias0] {
    font-weight: 500;
    color: #155724;
}

/* Animation for showing banner */
@keyframes slideUp-b-5vvn8bias0 {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Mobile adjustments */
@media (max-width: 600px) {
    .offline-status-banner[b-5vvn8bias0] {
        padding: 6px 12px;
        font-size: 0.8125rem;
    }

    .offline-banner .pending-badge[b-5vvn8bias0] {
        font-size: 0.6875rem;
        padding: 1px 6px;
    }
}

/* Dark mode support */
[b-5vvn8bias0] .mud-theme-dark .offline-banner {
    background-color: #3d3a24 !important;
    border-top-color: #ffc107;
}

[b-5vvn8bias0] .mud-theme-dark .offline-banner .offline-text {
    color: #ffc107;
}

[b-5vvn8bias0] .mud-theme-dark .sync-banner {
    background-color: #1a3550 !important;
    border-top-color: #2196f3;
}

[b-5vvn8bias0] .mud-theme-dark .sync-banner .sync-text {
    color: #90caf9;
}

[b-5vvn8bias0] .mud-theme-dark .error-banner {
    background-color: #3d2024 !important;
    border-top-color: #f44336;
}

[b-5vvn8bias0] .mud-theme-dark .error-banner .error-text {
    color: #ef9a9a;
}

[b-5vvn8bias0] .mud-theme-dark .success-banner {
    background-color: #1d3d24 !important;
    border-top-color: #4caf50;
}

[b-5vvn8bias0] .mud-theme-dark .success-banner .success-text {
    color: #a5d6a7;
}
/* /Components/Offline/UpdateAvailablePrompt.razor.rz.scp.css */
/* Epic #2320 Phase 4 - MC#28: Update Available Prompt Styles */

.update-available-prompt[b-he33z486hp] {
    position: fixed;
    top: 64px; /* Below AppBar */
    left: 0;
    right: 0;
    z-index: 1200;
    border-radius: 0 !important;
    border-bottom: 2px solid #2196f3;
    animation: slideDown-b-he33z486hp 0.3s ease-out;
}

@keyframes slideDown-b-he33z486hp {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive adjustments for mobile */
@media (max-width: 600px) {
    .update-available-prompt[b-he33z486hp] {
        top: 48px; /* Smaller AppBar on mobile */
    }

    .update-available-prompt .d-flex[b-he33z486hp] {
        flex-direction: column;
        text-align: center;
        gap: 12px !important;
    }

    .update-available-prompt .flex-grow-1[b-he33z486hp] {
        width: 100%;
    }
}
/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-shfjeal423] {
    position: relative;
    display: flex;
    flex-direction: column;
}

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

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

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

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

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

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

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

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

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

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

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

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

    .top-row[b-shfjeal423], article[b-shfjeal423] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

/* ========================================
   Sidebar Tenant Branding Styles
   ======================================== */

/* Tenant logo in sidebar header */
[b-shfjeal423] .tenant-logo {
    border: 2px solid rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
}

[b-shfjeal423] .tenant-logo img {
    object-fit: cover;
}

/* Fallback logo when tenant has no logo */
.sidebar-logo-fallback[b-shfjeal423] {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

/* Tenant name text */
[b-shfjeal423] .tenant-name {
    color: white;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 180px;
}

/* Powered by CliniqOne text under tenant name */
[b-shfjeal423] .powered-by-text {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.7rem;
}
/* /Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-j2x2tye08a] {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-j2x2tye08a] {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-j2x2tye08a] {
    font-size: 1.1rem;
}

.bi[b-j2x2tye08a] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu[b-j2x2tye08a] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-j2x2tye08a] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-j2x2tye08a] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.nav-item[b-j2x2tye08a] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-j2x2tye08a] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-j2x2tye08a] {
        padding-bottom: 1rem;
    }

    .nav-item[b-j2x2tye08a]  a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

.nav-item[b-j2x2tye08a]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-j2x2tye08a]  a:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

@media (min-width: 641px) {
    .navbar-toggler[b-j2x2tye08a] {
        display: none;
    }

    .collapse[b-j2x2tye08a] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }
    
    .nav-scrollable[b-j2x2tye08a] {
        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* /Pages/MedicalRecords/Index.razor.rz.scp.css */
.patient-card[b-o2vqrzh4zv] {
    transition: all 0.2s ease;
    border-radius: 8px;
    height: 100%;
}

.patient-card:hover[b-o2vqrzh4zv] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}

.patient-info[b-o2vqrzh4zv] {
    font-size: 0.875rem;
}

.search-btn[b-o2vqrzh4zv] {
    min-width: 120px;
    white-space: nowrap;
}

@media (max-width: 599.98px) {
    .search-btn[b-o2vqrzh4zv] {
        width: 100%;
        min-height: 44px;
    }
}
