/* _content/DoctorCare.Admin/Components/Layout/MainLayout.razor.rz.scp.css */
/* Main Layout Styles */
.app-container[b-5vvjjwdpk6] {
    display: flex;
    min-height: 100vh;
}

/* Sidebar */
.sidebar[b-5vvjjwdpk6] {
    width: 280px;
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    display: flex;
    flex-direction: column;
    position: fixed;
    height: 100vh;
    z-index: 100;
}

.sidebar-header[b-5vvjjwdpk6] {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo[b-5vvjjwdpk6] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon[b-5vvjjwdpk6] {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #0891b2 0%, #0e7490 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.logo-text[b-5vvjjwdpk6] {
    display: flex;
    flex-direction: column;
}

.logo-title[b-5vvjjwdpk6] {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
}

.logo-subtitle[b-5vvjjwdpk6] {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.sidebar-footer[b-5vvjjwdpk6] {
    margin-top: auto;
    padding: 1rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.version-info[b-5vvjjwdpk6] {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
    text-align: center;
}

/* Main Wrapper */
.main-wrapper[b-5vvjjwdpk6] {
    flex: 1;
    margin-left: 280px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Top Header */
.top-header[b-5vvjjwdpk6] {
    height: 64px;
    background: white;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    position: sticky;
    top: 0;
    z-index: 50;
}

.header-left[b-5vvjjwdpk6] {
    display: flex;
    align-items: center;
}

.page-title[b-5vvjjwdpk6] {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
}

.header-right[b-5vvjjwdpk6] {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-item[b-5vvjjwdpk6] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #64748b;
}

.status-indicator[b-5vvjjwdpk6] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #94a3b8;
}

.status-indicator.online[b-5vvjjwdpk6] {
    background: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
}

.user-menu[b-5vvjjwdpk6] {
    padding: 0.5rem 1rem;
    background: #f1f5f9;
    border-radius: 9999px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.user-menu:hover[b-5vvjjwdpk6] {
    background: #e2e8f0;
}

.user-avatar[b-5vvjjwdpk6] {
    width: 28px;
    height: 28px;
    background: #0891b2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

/* Main Content */
.main-content[b-5vvjjwdpk6] {
    flex: 1;
    padding: 2rem;
    background: #f1f5f9;
}

/* Error UI */
#blazor-error-ui[b-5vvjjwdpk6] {
    background: #fef3c7;
    border-top: 3px solid #f59e0b;
    bottom: 0;
    box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1);
    display: none;
    left: 0;
    padding: 1rem 1.5rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
    color: #92400e;
}

#blazor-error-ui .dismiss[b-5vvjjwdpk6] {
    cursor: pointer;
    position: absolute;
    right: 1rem;
    top: 0.75rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .sidebar[b-5vvjjwdpk6] {
        width: 80px;
    }

    .logo-text[b-5vvjjwdpk6],
    .sidebar-footer[b-5vvjjwdpk6] {
        display: none;
    }

    .logo-icon[b-5vvjjwdpk6] {
        margin: 0 auto;
    }

    .main-wrapper[b-5vvjjwdpk6] {
        margin-left: 80px;
    }
}

@media (max-width: 768px) {
    .sidebar[b-5vvjjwdpk6] {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .sidebar.open[b-5vvjjwdpk6] {
        transform: translateX(0);
    }

    .main-wrapper[b-5vvjjwdpk6] {
        margin-left: 0;
    }

    .top-header[b-5vvjjwdpk6] {
        padding: 0 1rem;
    }

    .main-content[b-5vvjjwdpk6] {
        padding: 1rem;
    }
}
/* _content/DoctorCare.Admin/Components/Layout/NavMenu.razor.rz.scp.css */
/* Navigation Menu Styles */
.nav-menu[b-lwepeumnsd] {
    flex: 1;
    padding: 1rem 0;
    overflow-y: auto;
}

.nav-section[b-lwepeumnsd] {
    margin-bottom: 1.5rem;
}

.nav-section-title[b-lwepeumnsd] {
    display: block;
    padding: 0 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.4);
}

[b-lwepeumnsd] .nav-link {
    display: flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
    margin: 0.125rem 0;
}

[b-lwepeumnsd] .nav-link:hover {
    background: rgba(255, 255, 255, 0.05);
    color: white;
}

[b-lwepeumnsd] .nav-link.active {
    background: rgba(8, 145, 178, 0.15);
    color: #06b6d4;
    border-left-color: #06b6d4;
}

.nav-icon[b-lwepeumnsd] {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0.5rem;
    transition: all 0.2s ease;
}

[b-lwepeumnsd] .nav-link:hover .nav-icon,
[b-lwepeumnsd] .nav-link.active .nav-icon {
    background: rgba(8, 145, 178, 0.2);
}

[b-lwepeumnsd] .nav-link.active .nav-icon {
    color: #06b6d4;
}

.nav-text[b-lwepeumnsd] {
    font-size: 0.875rem;
    font-weight: 500;
}

/* Scrollbar styling */
.nav-menu[b-lwepeumnsd]::-webkit-scrollbar {
    width: 4px;
}

.nav-menu[b-lwepeumnsd]::-webkit-scrollbar-track {
    background: transparent;
}

.nav-menu[b-lwepeumnsd]::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
}

.nav-menu[b-lwepeumnsd]::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Responsive - collapse text on smaller screens */
@media (max-width: 1024px) {
    .nav-section-title[b-lwepeumnsd] {
        display: none;
    }

    [b-lwepeumnsd] .nav-link {
        padding: 0.75rem;
        justify-content: center;
    }

    .nav-icon[b-lwepeumnsd] {
        margin-right: 0;
    }

    .nav-text[b-lwepeumnsd] {
        display: none;
    }
}
