@import '_content/Blazored.Toast/Blazored.Toast.bundle.scp.css';
@import '_content/LiveChartsCore.SkiaSharpView.Blazor/LiveChartsCore.SkiaSharpView.Blazor.h6pgu9i50m.bundle.scp.css';
@import '_content/PSC.Blazor.Components.Chartjs/PSC.Blazor.Components.Chartjs.bundle.scp.css';

/* /Shared/MainLayout.razor.rz.scp.css */
.page[b-n319slyu10] {
    display: flex;
    background-color: var(--bg-color);
    min-height: 100vh;
    transition: background-color 0.3s ease;
}

main[b-n319slyu10] {
    flex: 1;
    min-width: 0;
    overflow-x: hidden;
    transition: margin-left 0.3s ease;
}

.main-content[b-n319slyu10] {
    padding: 1.5rem;
    height: 100%;
}

.content-header[b-n319slyu10] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 0.5rem;
    background: var(--header-bg);
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.header-left[b-n319slyu10] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.sidebar-toggle[b-n319slyu10] {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-color);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: background-color 0.2s ease;
}

.sidebar-toggle:hover[b-n319slyu10] {
    background: var(--hover-bg);
}

.page-title[b-n319slyu10] {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
}

.header-buttons[b-n319slyu10] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.notification-button[b-n319slyu10], .theme-toggle[b-n319slyu10] {
    position: relative;
    background: var(--button-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.notification-button:hover[b-n319slyu10], .theme-toggle:hover[b-n319slyu10] {
    background: var(--hover-bg);
    transform: translateY(-1px);
}

.notification-badge[b-n319slyu10] {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--danger-color);
    color: white;
    font-size: 0.75rem;
    font-weight: 500;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content-body[b-n319slyu10] {
    background: var(--content-bg);
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    overflow: hidden;
    height: calc(100vh - 8rem);
    overflow-y: auto;
}

/* Animations */
.slide-in-top[b-n319slyu10] {
    animation: slideInTop-b-n319slyu10 0.5s ease-out;
}

.fade-in[b-n319slyu10] {
    animation: fadeIn-b-n319slyu10 0.5s ease-out;
}

.fade-in-up[b-n319slyu10] {
    animation: fadeInUp-b-n319slyu10 0.5s ease-out;
}

@keyframes slideInTop-b-n319slyu10 {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn-b-n319slyu10 {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fadeInUp-b-n319slyu10 {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .sidebar[b-n319slyu10] {
        position: fixed;
        left: -250px;
        top: 0;
        bottom: 0;
        z-index: 1000;
        transition: left 0.3s ease;
    }

    .sidebar.show[b-n319slyu10] {
        left: 0;
    }

    .sidebar-toggle[b-n319slyu10] {
        display: block;
    }

    .main-content[b-n319slyu10] {
        padding: 1rem;
    }

    .content-header[b-n319slyu10] {
        flex-direction: column;
        gap: 1rem;
    }

    .content-body[b-n319slyu10] {
        height: calc(100vh - 12rem);
    }
}
