/* =====================================================================
   NPS feedback page styles (standalone) — same look as the original
   MyAccount confirmation page: status panel + "We Value Your Feedback"
   card, blue 0-N scales, tick badge, thank-you state.
   ===================================================================== */

.npsWrap {
    max-width: 920px;
    margin: 24px auto;
    padding: 0 16px;
}

/* ---- top status panel ---- */
.npsStatus {
    border: 1px solid #e3e3e3;
    border-radius: 12px;
    padding: 22px 26px;
    margin-bottom: 22px;
    background: #f7fbff;
}
    .npsStatus .tick {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background: #1d6fd6;
        color: #fff;
        font-size: 22px;
        line-height: 1;
        margin-bottom: 10px;
    }
    .npsStatus h2 {
        margin: 0 0 6px;
        font-size: 1.35em;
        color: #1f2937;
    }
    .npsStatus .npsDate {
        font-weight: 700;
        color: #1d6fd6;
    }
    .npsStatus p {
        margin: 4px 0 0;
        color: #555;
    }

/* ---- feedback card ---- */
.npsCard {
    border: 1px solid #e7e7e7;
    border-radius: 12px;
    padding: 26px 30px;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .04);
}
    .npsCard h3 {
        color: #2f6fed;
        font-weight: 700;
        margin: 0 0 22px;
        font-size: 1.5em;
    }

.npsQ {
    margin-bottom: 8px;
}
    .npsQ .npsQText {
        display: block;
        color: #374151;
        margin-bottom: 14px;
    }

/* ---- the 0-N scale ---- */
.npsScale {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 26px;
    margin-bottom: 6px;
}
    .npsScale label {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        color: #1d6fd6;
        font-weight: 600;
        cursor: pointer;
    }
    .npsScale input[type="radio"] {
        margin: 0;
        cursor: pointer;
    }

.npsEnds {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    font-weight: 700;
    color: #374151;
    margin: 6px 2px 0;
    max-width: 560px;
}

.npsDivider {
    border: none;
    border-top: 1px solid #ececec;
    margin: 26px 0;
}

.npsBtnRow {
    margin-top: 26px;
}

#npsSubmit {
    background: #2f6fed;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 13px 34px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
}
    #npsSubmit:disabled {
        background: #9bb8ef;
        cursor: not-allowed;
    }

/* ---- thank-you state ---- */
#npsThanks {
    display: none;
    text-align: center;
    padding: 28px 10px;
}
    #npsThanks .tick {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: #1d6fd6;
        color: #fff;
        font-size: 26px;
        margin-bottom: 12px;
    }
    #npsThanks h3 {
        color: #1f2937;
        margin: 0 0 6px;
    }
    #npsThanks p {
        color: #555;
        margin: 0;
    }
