/* Styles généraux */
html, body {
    height: 100%;
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: #f0f0f0;
}

/* En-tête et pied de page */
header .top-bar, footer .bottom-bar {
    background-color: #448AFF; /* Utilisation de la couleur spécifiée */
    color: white;
    padding: 15px 0;
    text-align: center;
    font-size: 1.5em;
}

/* Pied de page fixé en bas */
footer .bottom-bar {
    position: fixed;
    bottom: 0;
    width: 100%;
    font-size: 1em;
}

/* Conteneur principal */
.container {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

/* Amélioration du formulaire */
#categorySelect {
    font-size: 1.2em;
    padding: 10px 20px;
    margin: 20px 0;
    display: block;
    width: 50%; /* Largeur ajustée pour le sélecteur */
    border: 2px solid #448AFF; /* Bordure colorée */
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Ombre discrète pour le relief */
    transition: all 0.3s ease;
}

#categorySelect:focus {
    border-color: #2a6dbb; /* Changement de couleur lors de la sélection */
    outline: none;
}

/* Style des liens */
.links-container a {
    color: #448AFF; /* Couleur des liens */
    padding: 10px 15px;
    margin: 5px 0;
    display: block; /* Chaque lien sur sa propre ligne */
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    border: 1px solid transparent; /* Préparation pour hover */
    background-color: #f2f2f2;
}

.links-container a:hover {
    background-color: #448AFF;
    color: white;
    border-color: #2a6dbb;
}

/* Conteneur pour les liens */
.links-container {
    width: 60%;
    margin-top: 10px;
    text-align: center;
    transition: all 0.3s ease-in-out;
}

/* Message de sélection */
.selection-message {
    font-size: 1.1em;
    margin-bottom: 10px;
    color: #333;
    text-align: center;
}

/* Style pour le contenu flexible */
.content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 1;
}

/* Fixer le footer en bas */
footer {
    position: relative;
    width: 100%;
}
