/* Fixed Header com Logout Button */
.fixed-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 60px !important;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%) !important;
    border-bottom: 2px solid rgba(0, 255, 136, 0.2) !important;
    z-index: 999 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 0 20px !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5) !important;
}

.fixed-header.hidden {
    display: none !important;
}

.fixed-header .logout-btn {
    width: auto !important;
    padding: 8px 20px !important;
    margin: 0 !important;
    font-size: 12px !important;
    font-weight: 600 !important;
}

/* Ajustar container quando header está visível */
body .container {
    padding-top: 80px;
}

/* Quando authForm está visível, remover o padding superior */
body #authForm:not(.hidden)~.container,
body #authForm:not(.hidden) {
    padding-top: 20px;
}

/* ========================================= */
/* ESTILOS PADRÃO DA NAVEGAÇÃO (Novo)        */
/* ========================================= */

.header-left {
    display: flex;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-right: 10px;
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-left: 20px;
}

.header-nav-item {
    color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: 'Exo 2', sans-serif;
}

.header-nav-item:hover,
.header-nav-item.active {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

/* Dropdown arrow fix */
.header-nav-item span {
    font-size: 10px;
    opacity: 0.7;
    margin-left: 2px;
}

/* Mobile adjustments handled by header-force.css but adding base styles here */
@media (max-width: 768px) {
    .header-nav {
        gap: 0;
    }

    .header-nav-item {
        width: 100%;
        padding: 15px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 0;
    }

    .header-nav-item:hover {
        background: rgba(255, 255, 255, 0.05);
        transform: none;
    }
}