/* ==================== PARTIE AIDES STAGES ==================== */

body { color: #1e2535;}

/* Container */
#container { display: flex; 
line-height: 2;
ul {
    list-style-type: disc; /* style classique des puces */
    list-style-position: outside; /* puces à l’extérieur du texte */
    margin: 1em 0; /* marge par défaut */
    padding-left: 40px; /* indentation standard */
}

li {
    margin: 0; /* enlever tout margin ajouté par d’autres styles */
    padding: 0; /* enlever tout padding ajouté par d’autres styles */
}
}

/* Bloc gauche fixe */
#bloc-fixe {
    width: 30%;
    padding: 20px;
    position: relative;
    top: 25%;
    left: 4%;
    background: #f5f7fa;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    overflow-y: auto;
    margin-top: 3%;
    height: 100%;
    margin-bottom: 20%;
}


/* Explications des filtres */
.explication-filtre {
    font-size: 1rem;
    color: #FFA500;
    margin-top: 15px;
    margin-bottom: 8px;
    line-height: 1;
}

/* Bloc central */
#colonne_aide {
    width: 59%;
    margin-left: 8%;
    margin-top: 2%;
    padding: 20px;
}

h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #FFA500;
}

/* Différents types */
.entrer_l1, .entrer_postl1 { border-top: 4px solid #1e2535; }
.valider_stage, .valider_echanges, .valider_certifications { border-top: 4px solid #FFA500; }

/* Bouton reset */
#reset-filters {
    margin-top: 6%;
    width: 100%;
    padding: 12px;
    background: #FFA500;
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.2s;
}

#reset-filters:hover { background: #1e2535; }



.bloc-stage {
    display: none;
    background: white;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 3%;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
}



/* Paragraphes internes mieux espacés */
.entrer_l1, .entrer_postl1, .Valider_stage, .Valider_echanges, .Valider_certifications {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* ============================= */
/* Style des liens */
/* ============================= */

.bloc-stage a {
    color: #FFA500;
    text-decoration: none; /* Supprime la mise en forme par défaut des liens, comme le soulignement en bleu */
}

.bloc-stage a:hover {
    text-decoration: underline; /* ajoute au lien un soulignement au passage de la souris */
}