/* --- ФИКСИРОВАННЫЙ НАВБАР --- */
        .navbar { 
            padding: 1rem 0; 
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            width: 100%;
            z-index: 1030;
            background-color: white;
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }
        body.dark-theme .navbar { background-color: #0f0f10; border-bottom-color: #2a2a2a; }

        .btn-create {
            background-color: var(--vibely-pink);
            color: white;
            border-radius: 8px;
            padding: 8px 20px;
            font-weight: 600;
        }
                     /* ─── БУРГЕР ─── */
.burger-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 1100;
}

.burger-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #000;
    border-radius: 2px;
    transition: all 0.3s ease;
}

body.dark-theme .burger-btn span {
    background-color: #fff;
}

/* Анимация бургера → крестик */
.burger-btn.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.burger-btn.open span:nth-child(2) {
    opacity: 0;
}
.burger-btn.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ─── МОБИЛЬНОЕ МЕНЮ ─── */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 1050;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

body.dark-theme .mobile-menu {
    background-color: #0f0f10;
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

.mobile-nav-link {
    font-size: 1.4rem;
    font-weight: 600;
    color: #000;
    text-decoration: none;
    transition: color 0.2s;
}

.mobile-nav-link:hover {
    color: var(--vibely-pink);
}

body.dark-theme .mobile-nav-link {
    color: #fff;
}

.mobile-nav-link.logout-link {
    color: #888;
    font-size: 1rem;
    margin-top: 20px;
}
.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    font-size: 1.6rem;
    cursor: pointer;
    color: #000;
}
.text-muted {
    color: white;
}
body.dark-theme .mobile-menu-close {
    color: #fff;
}
/* ─── ПОКАЗЫВАЕМ БУРГЕР НА МОБАЙЛ ─── */
@media (max-width: 992px) {
    .burger-btn {
        display: flex !important;
    }
}