<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.reveal .quiz-question ul {
    display: block;
    list-style-type: none;
    padding-left: 0;
}

.reveal .quiz-question li {
    margin-bottom: 15px;
}

.option-button {
    display: block;
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    background-color: #2c3e50;
    border: none;
    color: white;
    text-align: left;
    /* font-size: 18px; */
    cursor: pointer;
    transition: background-color 0.3s;
    border-radius: 10px;
}

.option-button:hover {
    background-color: #34495e;
}

.option-button.selected {
    background-color: #3498db;
}

.option-button.correct {
    background-color: #27ae60;
}

.option-button.incorrect {
    background-color: #FF0000;
}

.action-buttons {
    margin-top: 20px;
    font-weight: bold;
    font-size: 24px;
    top: 0%;
    border-radius: 10px;
}

.check-button,
.prev-button,
.next-button,
.reset-button {
    padding: 10px 20px;
    /* font-size: 18px; */
    cursor: pointer;
    border: none;
    color: white;
    margin-right: 10px;
}

.check-button {
    background-color: #BF40BF;
}

.prev-button {
    background-color: #2980b9;
}

.next-button {
    background-color: #27ae60;
}

.reset-button {
    background-color: #e5a43c;
}

.check-button:disabled,
.prev-button:disabled,
.next-button:disabled,
.reset-button:disabled {
    background-color: #7f8c8d;
    cursor: not-allowed;
}

.feedback {
    font-weight: bold;
    margin-top: 20px;
    font-size: 24px;
    /* center feedback */
    text-align: center;
}

.button-container {
    display: flex;
    justify-content: flex-end;
}

.score {
    position: absolute;
    color: #238636;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1001;
}</pre></body></html>