/* Style global de la page */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
    color: #333;
    text-align: center;
}

header {
    background-color: #003a06;
    color: white;
    padding: 10px 0;
    margin-bottom: 20px;
}

/* Mise en page des articles */
.container-articles {
    display: flex; /* Aligne les éléments côte à côte */
    justify-content: center; /* Centre les éléments */
    gap: 20px; /* Espace entre les articles */
    padding: 0 20px;
}

/* Style de chaque carte article */
.carte-article {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    width: 300px; /* Largeur fixe pour faire joli */
}

/* Style du bouton */
.btn-action {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
}

.btn-action:hover {
    background-color: #2980b9;
}