.container  {
    display: flex;
    justify-content: center;
}

.recipe-introduction {
    margin: 50px;
}

.text-title {
    font-weight: bold;
    text-decoration: underline;
    color: #609A7D;
}

.image-container {
    text-align: center;
}

.recipe-picture {
    width: 100%;
    margin: 0 auto;
}

@media screen and (min-width: 768px) {
    .recipe-picture {
        width: 50%;
    }
}

/* Style des avis patients */
.review-item {
    display: flex;
    justify-content: center;
}

.review-container {
    background-color: #F3F3F7;
    width: 90vw;
    height: 90vw;
    border: solid 10px #609A7D;
    border-radius: 50%;
    display: flex;
    font-size: 3vw;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 30px;
    margin-top: 40px;
    margin-bottom: 50px;
    overflow: hidden;
}

@media screen and (min-width: 700px) {
    .review-container {
        width: 70vw;
        height: 70vw;
    }
}

@media screen and (min-width: 990px) {
    .review-container {
        width: 40vw;
        height: 40vw;
        font-size: 1.5vw;
    }
}

@media screen and (min-width: 1200px) {
    .review-container {
        width: 30vw;
        height: 30vw;
        font-size: 1vw;
    }
}

.review-text {
    margin: 10px 0;
}

.review-name {
    font-family: 'Reenie Beanie', cursive;
    font-size: 30px;
    color: #0C0920;
}

/* Style du formulaire des avis patients */
.review-form {
    max-width: 80%;
}

input, textarea, .review-form {
    display: block;
    margin-bottom: 10px;
}

input[type="text"], textarea {
    width: 100%;
}

/* Style des étoiles de notation */
.rating-form-container {
    display: flex;
    margin-bottom: 20px; 
    padding-left: 20px;
}

.rating {
    display: flex;
    flex-direction: row-reverse;
}

.rating input {
    display: none;
}

.rating label {
    font-size: 30px;
    color: white;
    cursor: pointer;
    display: inline-block;
    margin-right: 5px;
}

.rating label:before {
    content: '\2605';
}

.rating input:checked ~ label, .rating input:hover ~ label, .star {
    color: #ffcc00;
}

.star {
    font-size: 40px;
    margin: 5px 0;
}

@media screen and (min-width: 700px) {
    .review-form {
        max-width: 60%;
    }
}

@media screen and (min-width: 1200px) {
    .review-form {
        max-width: 40%;
    }
}

/* Message d'erreur */
.error-message, .success-message {
    text-align: center;
    font-weight: bold;
}

.error-message {
    color: red;
}

.success-message {
    color: green;
}