/* header5.css - Styles pour panneau utilisateur */
.user-panel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--acier);
  color: var(--texte);
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: bold;
  font-family: 'Georgia', serif;
}

.user-panel button {
  background-color: var(--cuivre);
  color: var(--texte);
  border: none;
  padding: 8px 15px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.user-panel button:hover {
  background-color: var(--accent);
}
