/* ============ БОКОВОЕ МЕНЮ (ДЕСКТОП) ============ */
.desktop-sidebar {
    width: 300px;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1020;
    padding-top: 0;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.3) !important;
    color: #ffffff;
    backdrop-filter: blur(5px);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

/* Навигация в боковом меню */
.sidebar-nav {
    padding: 0.5rem 0;
    display: flex;
    flex-direction: column;
    height: calc(100vh - 80px);
}

/* Стили для ссылок меню */
.sidebar-nav .nav-link {
    padding: 0.5rem 1.5rem;
    border-left: 4px solid transparent;
    transition: all 0.2s;
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.85) !important;
}

.sidebar-nav .nav-link:hover,
.sidebar-nav .nav-link.active {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border-left-color: #ffffff !important;
}

/* Иконки в меню */
.sidebar-nav .nav-icon {
    font-size: 1.1rem;
    margin-right: 10px;
    width: 24px;
    text-align: center;
}

/* Мобильное навигационное меню */
.mobile-sidebar-nav {
    padding: 0.5rem 0;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.mobile-sidebar-nav .nav-link {
    padding: 0.4rem 1.2rem;
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
    border-left: 4px solid transparent;
    border-right: none;
    color: rgba(255, 255, 255, 0.85) !important;
}

.mobile-sidebar-nav .nav-link:hover,
.mobile-sidebar-nav .nav-link.active {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border-left-color: #ffffff !important;
}