/* Centrage de la navigation */
#table-of-contents {
    text-align: center;
    margin-top: 50px;
}

#table-of-contents h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

/* Effet de surbrillance sous le titre */
#table-of-contents h2::after {
    content: '';
    display: block;
    width: 50%;
    height: 3px;
    background-color: #6AB7F5;
    margin: 8px auto 0;
    border-radius: 5px;
}

/* Styles pour la liste des catégories */
.category-list {
    list-style-type: none;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.category-list li {
    margin: 10px 0;
}

/* Styles pour les boutons des catégories */
.category-btn {
    text-decoration: none;
    color: black;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 15px 30px;
    border-radius: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    position: relative;
}

/* Effet de survol et animation */
.category-btn:hover {
    transform: translateY(-5px); /* Soulève légèrement le bouton */
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.3); /* Augmente l'ombre */
    background-color: rgba(255, 255, 255, 0.8); /* Ajoute un léger changement de fond */
}

/* Couleurs pastel associées aux différentes catégories */
.programmes {
    background-color: #A3CBE3; /* Bleu pastel */
}

.socle {
    background-color: #F3B0B0; /* Rose pastel */
}

.recommandations {
    background-color: #FFD59E; /* Jaune pastel */
}

.organisation {
    background-color: #B3E6C1; /* Vert pastel */
}

.evaluations {
    background-color: #D7BDE2; /* Violet pastel */
}

.guides {
    background-color: #FAD9A1; /* Orange pastel */
}
.admin {
    background-color: #B1B1F1; /* Rose pastel */
}

/* Icônes pour les catégories */
.programmes::before {
    content: "📚";
}

.socle::before {
    content: "🏫";
}

.recommandations::before {
    content: "📝";
}

.organisation::before {
    content: "📅";
}

.evaluations::before {
    content: "✅";
}

.guides::before {
    content: "📖";
}
.admin::before {
    content: "📄";
}
/* Icônes affichées avant le texte */
.category-btn::before {
    font-size: 1.5rem;
}

.logo-container img {
    display: flex;
    align-items: center; /* Centre verticalement si nécessaire */
    max-width: 200px;
    height: auto;
}
/* Styles pour le header */
header {
    background: linear-gradient(135deg, #6AB7F5, #A3D8F4);
    color: black;
    padding: 30px 0;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Styles pour le container du header */
.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
}