/* ============================================
   STYLES GÉNÉRAUX
   ============================================ */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    background-color: #f9f9f9;
    font-family: "Segoe UI", sans-serif;
    padding-bottom: 60px; /* pour éviter que le footer masque le contenu */
}

h1 {
    color: #333;
}


/* Ombre légère pour les KPI du dashboard */
.js-plotly-plot {
    box-shadow: 0 1px 4px rgba(0,0,0,0.15);
    border-radius: 6px;
}

.bg-white {
    box-shadow: 0 1px 4px rgba(0,0,0,0.15);
    border-radius: 6px;
}


/* ============================================
   FOOTER FIXE EN BAS
   ============================================ */
.fixed-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #f8f9fa;
    padding: 10px 0;
    border-top: 1px solid #ddd;
    z-index: 1000;
    text-align: center;
}


/* ============================================
   SIDEBAR — STYLE PRO SANDSTONE
   ============================================ */
.sidebar {
    background-color: #3e4a56;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;          /* ✅ force la sidebar à prendre toute la hauteur */
    width: 240px;
    padding-top: 20px;
    overflow-y: auto;
}


/* liens */
.sidebar .nav-link {
    color: white !important;
    font-weight: 500;
    display: flex;
    align-items: center;
    padding: 10px 18px;
    border-radius: 6px;
}

/* icone des liens */
.sidebar .nav-link i {
    margin-right: 10px;
    font-size: 1.1rem;
}

/* hover */
.sidebar .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.10) !important;
    color: white !important;
}

/* lien actif */
.sidebar .nav-link.active {
    background-color: #c83737 !important; /* accent Sandstone */
    color: white !important;
}

.sidebar-footer-fixed {
    position: fixed;
    left: 0;
    bottom: 30px;
    width: 240px; /* même largeur que ta sidebar */
    text-align: center;
    z-index: 2000;
}

.sidebar-footer-fixed a {
    color: white !important;
    font-weight: 200;                 /* même épaisseur que les nav-link */
    font-size: 1rem;                  /* même taille de texte */
    font-family: "Segoe UI", sans-serif;  /* même police */
    
    display: block;
    margin-bottom: 10px;
    text-decoration: none;
    text-align: center;
}

.sidebar-footer-fixed a:hover {
    color: white !important;
    text-decoration: underline;
}





/* ============================================
   ALTERUX – STYLE PREMIUM ANALYSE IA
   ============================================ */

/* Conteneur général : meilleure couleur, meilleure lisibilité */
#ai-analysis-visible {
    color: #2b2b2b;
    font-size: 15px;
    line-height: 1.55;
    letter-spacing: 0.2px;
}

/* TITRES – uniformisés et stylés */
#ai-analysis-visible h1,
#ai-analysis-visible h2,
#ai-analysis-visible h3,
#ai-analysis-visible h4,
#ai-analysis-visible h5,
#ai-analysis-visible h6 {
    font-size: 18px !important;
    font-weight: 700;
    margin-top: 18px;
    margin-bottom: 8px;
    color: #1d4ed8; /* bleu UX moderne */
    letter-spacing: 0.3px;
}

/* PARAGRAPHES – lisibles, élégants */
#ai-analysis-visible p {
    margin-bottom: 10px;
    line-height: 1.55;
    font-size: 15px;
}

/* LISTES – espacées et propres */
#ai-analysis-visible ul {
    padding-left: 20px;
    margin-bottom: 12px;
}

#ai-analysis-visible li {
    margin-bottom: 6px;
    font-size: 15px;
}

/* EMPHASIS – rendre le gras plus élégant */
#ai-analysis-visible strong {
    color: #111;
    font-weight: 600;
}

/* BLOCS DE CITATION (si IA en génère) */
#ai-analysis-visible blockquote {
    margin-left: 0;
    padding-left: 15px;
    border-left: 3px solid #1d4ed8;
    color: #444;
    font-style: italic;
}

