/* ===== ADMIN BAR (Uniformizada) ===== */
.admin-bar {
    background: #1e293b; /* Tom escuro elegante (corresponde ao --text-main) */
    color: #f8fafc;
    padding: 0.8rem 2rem;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    font-size: 0.95rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 101; /* Fica acima de outros elementos */
    flex-wrap: wrap;
}

/* Título à esquerda / Link para o Dashboard */
.admin-bar .admin-link-title {
    margin-right: auto;
    font-weight: 700;
    font-size: 1.1rem;
    color: #f58220;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.admin-bar .admin-link-title:hover {
    color: #ff9844; /* Laranja mais claro no hover */
    background: rgba(245, 130, 32, 0.1); /* Fundo laranja subtil */
    transform: translateY(-2px);
}

/* Links de navegação */
.admin-bar a {
    color: #cbd5e1; /* Cinza claro para não ofuscar o título */
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

/* Efeito Hover */
.admin-bar a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Responsividade para ecrãs mais pequenos */
@media (max-width: 900px) {
    .admin-bar {
        justify-content: center;
        padding: 0.8rem 1rem;
    }
    .admin-bar .admin-link-title {
        margin-right: 0;
        width: 100%;
        justify-content: center;
        margin-bottom: 0.5rem;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding-bottom: 0.8rem;
    }
}