/* --- POLICE D'ÉCRITURE --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;800&display=swap');

body {
    font-family: 'Inter', sans-serif;
    background-color: #f0f2f6; /* Fond gris très clair (style Dashboard) */
    color: #333;
}

/* --- BARRE DE NAVIGATION (Bleu Pro comme la Doc) --- */
.navbar {
    background-color: #2980b9 !important; /* Le bleu Sphinx */
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-brand, .nav-link {
    color: white !important;
    font-weight: 500;
}

.nav-link:hover {
    color: #d4e6f1 !important; /* Bleu très clair au survol */
}

/* --- CARTES BLANCHES (Pour les graphiques et textes) --- */
/* On encadre le contenu principal pour faire "pro" */
.page-columns {
    background-color: #f0f2f6;
}

/* Style pour les images et graphiques : fond blanc + ombre */
img, .cell-output-display {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05); /* Ombre douce */
    padding: 10px;
    margin-bottom: 20px;
}

/* --- TITRES --- */
h1, h2, h3 {
    color: #2c3e50; /* Gris foncé bleuté */
    font-weight: 700;
}

h1 {
    margin-top: 20px;
    margin-bottom: 30px;
    border-bottom: 3px solid #2980b9; /* Soulignement bleu */
    display: inline-block;
    padding-bottom: 5px;
}

/* --- PIED DE PAGE --- */
.footer {
    background-color: #2c3e50;
    color: #bbb;
    font-size: 0.9em;
    padding: 20px 0;
    text-align: center;
}