
/* style.css - Commun à toutes les pages */
body {
    font-family: Arial, sans-serif;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
    background-color: #f9f9f9;
    color: #333;
}

h1 {
    color: #2a7f62;
    margin-bottom: 30px;
}

/* Boutons et liens */
button, .button, .link-box {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #2a7f62;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

button:hover, .button:hover, .link-box:hover {
    background-color: #ff6b6b;
    color: white;
}

/* Footer commun */
footer {
    width: 100%;
    padding: 10px 0;
    text-align: center;
    background-color: #f9f9f9;
    position: fixed;
    bottom: 0;
    left: 0;
    border-top: 1px solid #ddd;
    margin-top: 20px;
}

#return-button {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #2a7f62;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

#return-button:hover {
    background-color: #ff6b6b;
}



