.modal-italic-placeholder {
    margin-top: 14px;
}
.quiz-step {
    gap: 1rem;
}
span.error label {
    color: #ff0000;
}
label.modal-answer-options {
    display: flex;
    width: 100% !important;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    user-select: none;
}
label.modal-answer-options input {
    display: none;
}

label.modal-answer-options:hover {
    background-color: #b88e53;
    color: #fff;
}

.modal-answer-options:has(input[type="radio"]:checked) {
    background-color: #b88e5373;
    color: #fff;
}

.modal-answer-options:has(input[type="radio"]:checked)::before,
.modal-answer-options.selected::before {
    border-color: white;
    background-color: white;
}
