#survey-popup {
    display: none;
    max-width: 400px;
    width: 100%;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    background: #fff;
}

.survey-popup-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 24px;
    line-height: 1.3;
}

.survey-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.survey-option-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 16px;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    background: #fafafa;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    transition: all 0.2s ease;
}

.survey-option-btn:hover {
    background: #f0f0f0;
}

.survey-option-icon {
    font-size: 20px;
}
