.nps-survey-wrap {
    max-width: 640px;
    margin: 0 auto;
}

.nps-row {
    margin-bottom: 16px;
}

.nps-row label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
}

.nps-row input[type="text"],
.nps-row input[type="email"],
.nps-row textarea {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 15px;
}

.nps-score-scale {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.nps-score-btn {
    position: relative;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 8px 12px;
    cursor: pointer;
    text-align: center;
    min-width: 38px;
    font-weight: 500;
    transition: background 0.15s ease, color 0.15s ease;
}

.nps-score-btn input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.nps-score-btn.selected {
    background: #2271b1;
    color: #fff;
    border-color: #2271b1;
}

.nps-conditional {
    background: #f7f7f7;
    border: 1px solid #e2e2e2;
    border-radius: 6px;
    padding: 16px;
    margin: 16px 0;
}

.nps-html-message {
    margin-bottom: 12px;
}

.nps-checkbox-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin: 10px 0;
}

.nps-checkbox {
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 6px;
}

#nps-submit-btn,
#nps-continue-btn {
    background: #2271b1;
    color: #fff;
    border: none;
    padding: 10px 26px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 15px;
}

#nps-submit-btn:disabled {
    opacity: 0.6;
    cursor: default;
}

.nps-link-btn {
    background: none;
    border: none;
    color: #2271b1;
    cursor: pointer;
    padding: 0;
    font-size: 14px;
    text-decoration: underline;
}

.nps-message {
    margin-top: 16px;
    padding: 12px 14px;
    border-radius: 4px;
}

.nps-message.nps-success {
    background: #e6f4ea;
    color: #1e7e34;
}

.nps-message.nps-error {
    background: #fdecea;
    color: #c62828;
}
