/* Fichier : static/dashboard.css */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #1e1e2e; /* Fond sombre et profond */
    color: #cdd6f4; /* Texte clair et lisible */
    margin: 0;
    padding: 24px;
    line-height: 1.6;
}
.container {
    max-width: 900px;
    margin: 0 auto;
}
header h1 {
    font-size: 2.5em;
    color: #cba6f7; /* Violet lavande pour le titre */
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 0 0 10px rgba(203, 166, 247, 0.3);
}
.card {
    background-color: #313244; /* Un fond plus clair pour les cartes */
    padding: 20px 25px;
    border-radius: 8px;
    border: 1px solid #45475a;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}
.card h2 {
    font-size: 1.5em;
    color: #89b4fa; /* Bleu pour les sous-titres */
    margin-top: 0;
    border-bottom: 2px solid #585b70;
    padding-bottom: 10px;
}
.card h3 {
    font-size: 1.2em;
    color: #cdd6f4;
    margin-top: 25px;
}
.card h4 {
    font-size: 1.1em;
    color: #cdd6f4;
    margin-top: 20px;
    margin-bottom: 5px;
}
.card ol, .card ul {
    padding-left: 20px;
}
.card a {
    color: #89b4fa;
    text-decoration: none;
}
.card a:hover {
    text-decoration: underline;
}
footer {
    text-align: center;
    margin-top: 40px;
    font-size: 0.9em;
    color: #a6adc8;
}
footer a {
    color: #89b4fa;
    text-decoration: none;
}
footer a:hover {
    text-decoration: underline;
}