.quiz-container {
    font-family: Arial, sans-serif;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    margin: 20px auto;
}

.quiz-container h3 {
	font-size:12px;
}

.quiz-container .feedback {
	font-size:12px;
}


button.answer {
    display: block;
    margin: 10px auto;
    padding: 10px;
    width: 80%;
    border: none;
    cursor: pointer;
    font-size: 12px;
    background: #999;
    color: white;
    border-radius: 5px;
    transition: background 0.3s ease, color 0.3s ease;
}

/* ✅ Botón seleccionado - Respuesta Correcta (Verde) */
button.answer.correct {
    background: #28a745 !important; /* Verde */
    color: white !important;
    font-weight: bold;
}

/* ❌ Botón seleccionado - Respuesta Incorrecta (Rojo) */
button.answer.incorrect {
    background: #dc3545 !important; /* Rojo */
    color: white !important;
    font-weight: bold;
}

/* 🚫 Botones no seleccionados (Gris claro) */
button.answer.disabled {
    background: #d6d6d6 !important; /* Gris claro */
    color: #6c757d !important; /* Gris oscuro */
    cursor: default; /* Elimina la mano al pasar el mouse */
    pointer-events: none; /* Evita cualquier interacción */
}
