/**
 * Stili per la modalità concorso a Quiz.
 */

.eprize-quiz-wrapper .question-row {
    margin-bottom: 2em;
    padding: 1.5em;
    background: #f8f9fa;
    border-radius: 8px;
}

.eprize-quiz-wrapper .answers-wrapper {
    margin-top: 1em;
}

.eprize-quiz-wrapper .answer-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.5em;
}

.eprize-quiz-wrapper .answer-row input[type="text"] {
    flex-grow: 1;
}

.eprize-quiz-wrapper .remove-answer-button,
.eprize-quiz-wrapper .remove-question-button {
    color: #a00;
    text-decoration: none;
    font-size: 1.5em;
    line-height: 1;
}

.eprize-quiz-wrapper .remove-question-button {
    float: right;
}

/* Stili per il frontend del quiz */
.eprize-quiz-question-wrapper {
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 2em;
}

.eprize-quiz-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5em;
}

.eprize-quiz-header h3 {
    margin: 0;
    font-size: 1.2em;
    color: #34495e;
}

.eprize-quiz-timer {
    width: 150px;
    height: 10px;
    background-color: #e9ecef;
    border-radius: 5px;
    overflow: hidden;
}

.eprize-timer-bar {
    height: 100%;
    width: 100%;
    background-color: #3498db;
    border-radius: 5px;
    transition: width 1s linear;
}

.eprize-question-text {
    font-size: 1.5em;
    font-weight: 500;
    margin-bottom: 1.5em;
}

.eprize-answers-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 2em;
}

.eprize-answer-label {
    display: block;
    background: #f8f9fa;
    padding: 15px 20px;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    cursor: pointer;
    transition: all 0.2s ease;
}

.eprize-answer-label:hover {
    border-color: #3498db;
    background-color: #f1f8fc;
}

.eprize-answer-label input[type="radio"] {
    margin-right: 10px;
}

/* Stili per le immagini e i link nelle domande del quiz */
.eprize-question-image {
    margin-bottom: 15px;
    text-align: center;
}

.eprize-question-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.eprize-question-link {
    margin-top: 10px;
    margin-bottom: 15px;
    font-size: 0.9em;
    text-align: center;
}

.eprize-question-link a {
    text-decoration: underline;
    font-weight: bold;
}