/* Styles généraux du plugin */
.gf-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Styles pour les quiz */
.gf-quiz-form {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.gf-quiz-question {
    margin-bottom: 24px;
}

.gf-quiz-q-title {
    font-size: 1.1em;
    font-weight: bold;
    margin-bottom: 12px;
}

.gf-quiz-q-rep label {
    display: block;
    padding: 8px 12px;
    margin: 4px 0;
    background: #f8f9fa;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.gf-quiz-q-rep label:hover {
    background: #e9ecef;
}

/* Styles pour les résultats */
.gf-quiz-result {
    margin-top: 24px;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 4px;
    text-align: center;
}

.gf-quiz-correction {
    margin-top: 24px;
}

/* Styles pour les boutons */
.gf-quiz-submit {
    width: 100%;
    padding: 12px;
    background: #ff8500;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.2s ease;
}

.gf-quiz-submit:hover {
    background: #e06d00;
}

.gf-quiz-submit:disabled {
    background: #6c757d;
    cursor: not-allowed;
}

/* Styles pour la correction */
.gf-quiz-corr-question {
    margin-bottom: 20px;
}

.gf-quiz-corr-reps span {
    display: block;
    margin-bottom: 4px;
    padding: 8px 12px;
    border-radius: 4px;
}

/* Styles pour les réponses correctes/incorrectes */
.gf-correct {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.gf-incorrect {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Styles responsifs */
@media (max-width: 768px) {
    .gf-container {
        padding: 10px;
    }

    .gf-quiz-form {
        padding: 15px;
    }
}