/* /Layout/MainLayout.razor.rz.scp.css */
.layout-page[b-69vjscjtr2] {
    display: flex;
    height: 100vh;
    overflow: hidden;
}

.layout-content[b-69vjscjtr2] {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
    background: #FFFFFF;
}
/* /Layout/NavMenu.razor.rz.scp.css */
/* Бургер-кнопка */
.burger-btn[b-8304kcrct7] {
    position: fixed;
    top: 16px;
    left: 16px;
    font-size: 1.8rem;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1100;
    color: #C0392B;
}

/* Контейнер меню */
.nav-container[b-8304kcrct7] {
    position: fixed;
    top: 0;
    left: 0;
    width: 200px;
    height: 100vh;
    background: #FDEDEF;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 1050;
    padding-top: 60px; /* пространство под бургер */
}

    /* Состояние открытого меню */
    .nav-container.open[b-8304kcrct7] {
        transform: translateX(0);
    }

/* Название */
.navbar-brand[b-8304kcrct7] {
    display: block;
    text-align: center;
    font-weight: 600;
    color: #C0392B;
    margin-bottom: 24px;
    text-decoration: none;
}

/* Список ссылок */
nav ul[b-8304kcrct7] {
    list-style: none;
    padding: 0;
    margin: 0;
}

nav li + li[b-8304kcrct7] {
    margin-top: 12px;
}

nav a[b-8304kcrct7] {
    display: block;
    padding: 8px 16px;
    text-decoration: none;
    color: #C0392B;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.2s, color 0.2s;
}

    nav a.active[b-8304kcrct7] {
        background: #E74C3C;
        color: white;
    }

    nav a:hover[b-8304kcrct7] {
        background: rgba(231, 76, 60, 0.1);
    }

/* Адаптив: на узких экранах меню скрыто по-умолчанию */
@media (max-width: 768px) {
    .nav-container[b-8304kcrct7] {
        top: 0;
        width: 180px;
        transform: translateX(-100%);
    }

        .nav-container.open[b-8304kcrct7] {
            transform: translateX(0);
        }
}
