/**
 * Единый layout основного сайта (UX-01), дополняет main.css и v3-design-tokens.css.
 */

/* Активный пункт меню — акцент v3 */
#sidebar .menu-item.active {
    background: var(--isodta-primary-light, #ebf5ff);
    color: var(--isodta-primary, #1a56db);
    border-left-color: var(--isodta-primary, #1a56db);
    font-weight: 600;
}

#sidebar .menu-item.active::before {
    width: 0;
}

#sidebar .menu-item.active i {
    color: var(--isodta-primary, #1a56db);
}

/* Хлебные крошки под шапкой */
.app-breadcrumb-bar {
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
}

.app-breadcrumb-bar .breadcrumb-item a {
    color: var(--isodta-primary, #1a56db);
    text-decoration: none;
}

.app-breadcrumb-bar .breadcrumb-item a:hover {
    text-decoration: underline;
}

.app-breadcrumb-bar .breadcrumb-item.active {
    color: var(--status-neutral-text, #374151);
}

/* Контент страниц */
#pageContent {
    min-height: calc(100vh - 220px);
}

.top-navbar {
    border-bottom: 1px solid #e5e7eb;
}

.top-navbar .page-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.15rem;
}

/* Мобильное меню */
@media (max-width: 991.98px) {
    #sidebar.show {
        box-shadow: 4px 0 24px rgba(0, 0, 0, 0.15);
    }

    .app-breadcrumb-bar .breadcrumb {
        flex-wrap: wrap;
    }
}
