body {
    font-family: 'Libre Baskerville', serif;
    background: #ecf0f1;
    color: #2c3e50;
    text-align: center;
}

header {
    background: linear-gradient(to right, #2c3e50, #34495e);
    color: white;
    padding: 20px;
}

nav {
    margin-top: 10px;
}

nav a {
    padding: 10px;
    margin: 5px;
    text-decoration: none;
    background: #8e44ad;
    color: white;
    border-radius: 5px;
}

nav a.active {
    background: #f39c12;
}

.mot {
    background: white;
    padding: 15px;
    margin: 10px auto;
    border-left: 5px solid #8e44ad;
    width: 50%;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    text-align: left; /* Assurer que tout le contenu est aligné à gauche */
}

.mot p {
    text-align: left; /* Forcer l'alignement à gauche */
    display: block; /* Assurer que chaque ligne s'affiche normalement */
    margin-left: 0; /* Éviter tout décalage */
    white-space: normal; /* Permettre un retour à la ligne naturel */
}

.btn {
    display: inline-block;
    padding: 10px 15px;
    background: #8e44ad;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
}

/* Style du champ de recherche */
.search-container {
    position: relative;
    display: inline-block;
    margin-top: 20px;
}

.search-container input[type="text"] {
    width: 6cm;
    height: 1cm;
    font-size: 1em;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* Ajout de la flèche indicatrice */
.search-container::after {
    content: "⬇";
    font-size: 1.5em;
    color: #0d3b66;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -30px;
}


/* 🎨 Harmonisation du footer */
footer {
    background: #2c3e50; /* Même couleur que index.php */
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

.footer-links {
    margin-top: 10px;
}

.footer-links a {
    color: white;
    margin: 0 15px; /* Ajustement de l'espacement */
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}


.search-container {
    position: relative;
    text-align: center;
    margin: 20px auto;
}

.search-container input[type="text"] {
    width: 6cm;
    height: 1cm;
    font-size: 16px;
    border: 2px solid #8e44ad;
    border-radius: 5px;
    outline: none;
}

.search-container::after {
    display: block;
    color: #8e44ad;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    margin-top: 5px;
}
