/* Réinitialisation des styles de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    text-align: center;
}

.planning {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin: 20px;
}

.jour {
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 20px;
    margin: 10px;
    width: 300px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.jour img {
    max-width: 100%;
    height: auto;
    margin-top: 10px;
}

.jour img {
    max-width: 100%; /* Les images ne dépasseront pas la largeur du conteneur */
    height: auto; /* La hauteur s'ajustera automatiquement pour conserver les proportions originales de l'image */
    margin-top: 10px; /* Marge au-dessus de l'image */
    border: 2px solid #ddd; /* Bordure autour de l'image */
    border-radius: 5px; /* Coins arrondis de la bordure */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Ombre autour de l'image */
}
/* Style supplémentaire que vous pouvez ajouter selon vos préférences */

