.case_question {
    width: 100%;
    max-width: 800px;
    margin: 2em auto;
    background: #ffffff;
    border-radius: 12px;
    padding: 2em;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    font-size: 1rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 1.2em;
}

/* Titres */
.case_question h1 {
    font-size: 1.6em;
    text-align: center;
    margin-bottom: 0.5em;
}

.case_question h2 {
    font-size: 1.2em;
    color: #333;
}

/* Médias */
.case_question .media {
    text-align: center;
}

/* Formulaire */
.case_question form {
    display: flex;
    flex-direction: column;
    gap: 1em;
}

.case_question input[type="text"] {
    padding: 0.5em;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 6px;
}

/* Radio + Label */
.case_question div {
    display: flex;
    align-items: center;
    gap: 0.5em;
}

.case_question input[type="radio"] {
    accent-color: #de9e36;
}

/* Bouton de validation */
.case_question input[type="submit"] {
    background-color: #deb841;
    color: white;
    border: none;
    padding: 0.8em 1.5em;
    font-size: 1em;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.case_question input[type="submit"]:hover {
    background-color: #de9e36;
}

.media {
    max-width: 100%;
    max-height: 250px;
    height: auto;
    width: auto;
    display: block;
    margin: 1rem auto;
    object-fit: contain;
}


