/* -----------------------------
   PALETTE
----------------------------- */


:root {
  --ink: #16324a;        /* texte fort, bordures d'accent, boutons primaires */
  --line: #d9dee3;       /* bordures, séparateurs */
  --muted: #5c6b7a;      /* texte secondaire, placeholders */
  --bg-soft: #f5f7f9;    /* fonds de blocs, survol de ligne */
  --mark: #0f6b52;       /* validé, sélectionné */
  --danger: #a3341f;     /* erreurs, suppression */
}

/* -----------------------------
   NAVBAR
----------------------------- */

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 32px;
    background: #2A2B2C;
    color: #f9fafb;
}

.navbar a {
    color: #f9fafb;
}


.nav-left a, .nav-right a {
    text-decoration: none;
    padding: 0.5rem 0.9rem;
    border-radius: 8px;
    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.nav-left a:hover, .nav-right a:hover {
    background-color: #e1ecf224;
}




