
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

header {
    background-color: #333;
    color: white;
    padding: 10px 0;
    text-align: center;
}

nav a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
}

main {
    padding: 20px;
    text-align: center;
}

.articles {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.article {
    background-color: white;
    border: 1px solid #ccc;
    padding: 20px;
    margin: 10px;
    width: 300px;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    bottom: 0;
    width: 100%;
}
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

table, th, td {
    border: 1px solid #ddd;
    padding: 8px;
}

th {
    background-color: #f2f2f2;
    text-align: left;
}

td {
    text-align: center;
}

strong {
    font-size: 1.2em;
}
.articles {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.article {
    width: 28%;  /* Chaque article prend 30% de la largeur pour 3 articles par ligne */
    margin-bottom: 20px;
    text-align: center;
}

.article img {
    width: 100%;
    height: auto;
    max-width: 150px;  /* Ajuster la taille maximale des images */
}

.article h3 {
    font-size: 1.2em;
    margin-top: 10px;
}

.article p {
    font-size: 1em;
    margin: 5px 0;
}
/* Menu en haut à droite */
        .menu {
            position: absolute;
            top: 10px;
            right: 5em;
			/*left: 10px;*/
        }

        .menu ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .menu ul li {
            display: inline-block;
            margin-left: 20px;
        }

        .menu ul li a {
            text-decoration: none;
            color: #000;
            font-weight: bold;
			/*font-size: 2px; /* taille icones et menu drop 24-0-29 */
        }

        /* Style pour l'apparence du menu */
        .menu ul li a:hover {
            color: #007BFF; /* Couleur de survol */
        }

        /* Style pour rendre le menu un peu plus visible */
        .menu {
            background-color: #f8f9fa;
            padding: 10px;
            border-radius: 5px;
        }
		/* Appliquer à tous les éléments */
/* {
    font-size: 18px;  
    line-height: 1.6;
} */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    width: 400px;
    max-width: 80%;
    text-align: center;
}

.close {
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 24px;
    cursor: pointer;
}

.btn-add {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.btn-add:hover {
    background-color: #45a049;
}
