.quiz-option-check {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #7c3aed;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quiz-option-check.selected {
    background-color: #7c3aed;
}

.quiz-option-check.selected::after {
    content: '✓';
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.quiz-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    background-color: white;
    border-radius: 9999px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.quiz-option:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}