/* style_footer.css */

/* Styles pour le pied de page */
footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #3498db; /* Fond bleu */
    color: #fff; /* Texte blanc */
    text-align: center;
    padding: 10px 0; /* Espacement intérieur */
}
