.single-selection-question {
    padding: 20px 0;
}

.question-title {
    color: #333;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
    line-height: 1.4;
}

.answer-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
}

.answer-options.grid-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    max-width: 900px;
}

.answer-option {
    padding: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.answer-option:hover {
    border-color: #007bff;
    background-color: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.answer-option.selected {
    border-color: #ff9500;
    background-color: #fff3e0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 149, 0, 0.3);
}

.option-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.option-text {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    text-align: center;
    line-height: 1.5;
}

.answer-option.selected .option-text {
    color: #e65100;
    font-weight: 600;
}

@media(max-width: 768px) {
    .answer-options {
        max-width: 100%;
    }

    .answer-options.grid-layout {
        grid-template-columns: repeat(1, 1fr);
        gap: 12px;
    }

    .answer-option {
        padding: 15px;
    }

    .question-title {
        font-size: 20px;
    }

    .option-text {
        font-size: 14px;
    }
}