/* Feedback Question Styles */
.ff-feedback-question {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid #e0e0e0;
}

.ff-feedback-question h4 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
    font-size: 18px;
    font-weight: 600;
}

.ff-feedback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.ff-feedback-option {
    flex: 1;
    min-width: 150px;
    max-width: 200px;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9f9f9;
}

.ff-feedback-option:hover {
    border-color: #ff6900;
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 105, 0, 0.2);
}

.ff-feedback-option input[type="checkbox"] {
    margin-right: 8px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.ff-feedback-option input[type="checkbox"]:checked + span {
    font-weight: 600;
    color: #ff6900;
}

.ff-feedback-option span {
    font-size: 16px;
    color: #333;
}

@media (max-width: 768px) {
    .ff-feedback-option {
        min-width: 120px;
        padding: 12px 15px;
    }

    .ff-feedback-question h4 {
        font-size: 16px;
    }

    .ff-feedback-option span {
        font-size: 14px;
    }
}
