/* Контейнер для пользователя */
.user-name {
    display: inline-flex;
    align-items: center;
    height: 38px; /* Фиксированная высота, как у кнопки */
    padding: 0 10px;
    color: white;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    font-size: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Кнопка выхода */
.btn-logout {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 0 16px;
    height: 38px; /* Такая же высота, как у user-name */
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    line-height: 1; /* Убираем лишнюю высоту строки */
}

.btn-logout:hover {
    background: rgba(239, 68, 68, 0.8);
    border-color: white;
    transform: translateY(-2px);
}

.btn-logout:active {
    transform: translateY(0);
}

/* Класс для отступов */
.gap-2 {
    gap: 0.5rem;
}

.btn-nav-login {
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    background: transparent;
    display: inline-block;
}


.btn-nav-register {
    padding: 8px 24px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    background: white;
    color: #f97316; /* Оранжевый */
    border: 2px solid white;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-nav-register:hover {
    background: transparent;
    color: white;
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.btn-nav-login:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    color: white;
    transform: translateY(-2px);
}
.nav-item{
    padding: 10px;
}
.nav-link{
color: white;}

