/* Styles pour l'affichage des recettes */

.recette-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    height: 100vh; /* Pleine hauteur de l'écran */
    box-sizing: border-box;
}

/* Section gauche : Image */
.recette-image {
    height: 100%;
    background-color: #f9f9f9; /* Couleur de fond temporaire */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px;
    box-sizing: border-box;
}
.recette-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Section droite : Contenu */
.recette-content {
    width: 60%;
    padding: 20px;
    box-sizing: border-box;
    overflow: hidden; /* Empêcher le scroll */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.recette-content h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
}

.recette-content h2 {
    font-size: 1.5rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    color: #555;
}

.recette-content p {
    font-size: 1rem;
    line-height: 1.5;
    color: #666;
}

/* Ajout d'espacement pour les sections */
.recette-content .section {
    margin-bottom: 20px;
}

