/* components/topo/topo.css */

.top-menu { 
    display: flex; 
    height: 40px; 
    background-color: var(--bg-topbar); 
    align-items: center; 
    padding: 0 10px; 
    justify-content: space-between; 
    border-bottom: 1px solid rgba(255, 255, 255, 0.05); 
    gap: 10px; 
}

.mobile-toggle { 
    display: none; 
    background: transparent; 
    border: none; 
    color: var(--text-main); 
    font-size: 18px; 
    cursor: pointer; 
    padding: 5px; 
}

.top-menu-links { 
    display: flex; 
    gap: 4px; 
    height: 100%; 
    align-items: center; 
    flex: 1; 
    overflow-x: auto; 
    white-space: nowrap; 
    scrollbar-width: none; 
}

.top-menu-links::-webkit-scrollbar { display: none; }

.top-menu a { 
    color: var(--text-muted); 
    text-decoration: none; 
    font-size: 11px; 
    font-weight: 500; 
    text-transform: uppercase; 
    padding: 6px 12px; 
    border-radius: var(--radius-sm); 
    transition: 0.2s; 
}

.top-menu a:hover { 
    color: var(--text-main); 
    background-color: rgba(255, 255, 255, 0.1); 
}

.top-menu a.active { 
    color: white; 
    background-color: var(--primary); 
}

/* O NOVO BOTÃO DE ROLDANA */
.btn-settings { 
    background: transparent; 
    border: none; 
    color: var(--text-muted); 
    cursor: pointer; 
    font-size: 18px; /* Tamanho do ícone da roldana */
    transition: 0.2s; 
    padding: 6px 10px; 
    border-radius: var(--radius-sm); 
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-settings:hover { 
    color: var(--primary); 
    background-color: rgba(255, 255, 255, 0.05); 
}

