/* NexSales Gamified Survey — Frontend */
.nss-survey-wrap {
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
    font-family: inherit;
}
.nss-survey-wrap * {
    box-sizing: border-box;
}
.nss-rating-btn {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    border: 1.5px solid rgba(255,255,255,.15);
    background: rgba(255,255,255,.06);
    color: rgba(255,255,255,.8);
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all .18s;
    font-family: inherit;
    flex-shrink: 0;
}
.nss-rating-btn:hover {
    background: rgba(109,40,217,.2);
    border-color: #7c3aed;
    color: #fff;
    transform: translateY(-3px);
}
.nss-rating-btn.sel {
    background: rgba(109,40,217,.35);
    border-color: #7c3aed;
    color: #fff;
    box-shadow: 0 0 16px rgba(109,40,217,.5);
    transform: translateY(-3px);
}
.nss-yesno-btn {
    padding: 18px 14px !important;
    justify-content: center;
}