@import '_content/Blazored.Toast/Blazored.Toast.bundle.scp.css';
@import '_content/Microsoft.AspNetCore.Components.QuickGrid/Microsoft.AspNetCore.Components.QuickGrid.bundle.scp.css';

/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-b5h3efkcfp] {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 260px 1fr;
    background: #f4f7fb;
    transition: grid-template-columns 0.2s ease;
}

    .page.sidebar-collapsed[b-b5h3efkcfp] {
        grid-template-columns: 70px 1fr;
    }

/*.sidebar {
    background: #0f172a;
    color: #fff;
    border-right: 1px solid rgba(255,255,255,0.08);
    overflow: hidden;
}*/

.main[b-b5h3efkcfp] {
    display: grid;
    grid-template-rows: auto 1fr;
    min-width: 0;
}

.topbar[b-b5h3efkcfp] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
}

.topbar__title[b-b5h3efkcfp] {
    font-size: 1.4rem;
    font-weight: 700;
    color: #111827;
}

.topbar__meta[b-b5h3efkcfp] {
    font-size: 0.92rem;
    color: #6b7280;
    margin-top: 2px;
}

.topbar__status[b-b5h3efkcfp] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 999px;
    color: #1e3a8a;
    font-weight: 600;
}

.status-dot[b-b5h3efkcfp] {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #22c55e;
}

.content[b-b5h3efkcfp] {
    padding: 24px;
    min-width: 0;
}
@media (max-width: 900px) {
    .page[b-b5h3efkcfp],
    .page.sidebar-collapsed[b-b5h3efkcfp],
    .page.sidebar-open[b-b5h3efkcfp] {
        display: block;
        grid-template-columns: none; /* 🔥 important */
    }

    .sidebar[b-b5h3efkcfp] {
        width: 100%;
        height: auto;
        min-height: 0;
        position: static;
        top: auto;
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        overflow: hidden;
        background: #0f172a;
        color: #fff;
    }

    .main[b-b5h3efkcfp] {
        width: 100%;
        display: block;
        min-width: 0;
    }
}
.sidebar[b-b5h3efkcfp] {
    order: 0;
}

.main[b-b5h3efkcfp] {
    order: 1;
}
/* /Layout/NavMenu.razor.rz.scp.css */
.top-row[b-eu5wurprnp] {
    height: 3.5rem;
    display: flex;
    align-items: center;
    background-color: rgba(0,0,0,0.25);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.navbar-brand[b-eu5wurprnp] {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
}

.navbar-toggler[b-eu5wurprnp] {
    border: 0;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 0.45rem 0.65rem;
    border-radius: 10px;
}

.navbar-toggler-icon[b-eu5wurprnp] {
    display: inline-block;
    width: 1.25rem;
    height: 1.25rem;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}

.nav[b-eu5wurprnp] {
    display: grid;
    gap: 8px;
    padding: 18px 14px;
}

.nav__link[b-eu5wurprnp] {
    display: block;
    padding: 12px 14px;
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
}

    .nav__link:hover[b-eu5wurprnp] {
        color: #fff;
        text-decoration: none;
        background: rgba(255, 255, 255, 0.08);
    }

    .nav__link.active[b-eu5wurprnp] {
        color: #fff;
        text-decoration: none;
        background: #1d4ed8;
    }

