/* Styles généraux */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #06071d; /* Texte en noir ou proche du noir pour un bon contraste sur fond clair */
    background-color: #F6F1FE; /* Fond rose-violet clair */
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Empêche le défilement horizontal */
}

/* Conteneur principal */
main {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #FFF3F9; /* Fond rose-violet clair plus doux */
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1); /* Ombre légère pour faire ressortir le contenu */
    color: #06071d; /* Texte foncé pour la lisibilité */
}

/* En-tête */
header {
    text-align: center;
    margin-bottom: 20px;
    background-color: #06071d;
}

header h1 {
    font-size: 2em;
    margin: 0;
    color: #ddd; /* Couleur de titre sombre pour la lisibilité sur fond clair */
}

header p {
    font-size: 0.9em;
    color: #929292; /* Couleur de sous-titre plus foncée */
}

/* Sections et sous-sections */
section {
    margin-bottom: 20px;
}

h2, h3 {
    color: #FF41C7; /* Utilise une couleur vive pour les titres */
    margin-top: 20px;
    margin-bottom: 10px;
}

h2 {
    font-size: 1.5em;
}

h3 {
    font-size: 1.2em;
}

/* Liste à puces */
ul {
    padding-left: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
}

ul li {
    margin-bottom: 5px;
}

/* Table */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 0.9em;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background-color: #FFF3F9; /* Utilise le fond rose-violet clair plus doux */
    color: #06071d; /* Texte foncé pour la lisibilité */
}

table thead {
    background-color: #FF41C7; /* Couleur vive pour l'en-tête de table */
    color: #fff; /* Texte blanc sur fond rose-violet */
}

table th, table td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #ddd; /* Bordure plus légère */
}

table tr:hover {
    background-color: #f6e6f0; /* Fond légèrement plus foncé au survol */
}

/* Liens */
a {
    color: #FF41C7; /* Couleur vive pour les liens */
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Pied de page */
footer {
    text-align: center;
    padding: 10px;
    font-size: 0.8em;
    color: #666666; /* Texte plus foncé pour le pied de page */
    border-top: 1px solid #ddd; /* Bordure supérieure légère */
    margin-top: 20px;
}
