.nps-form {
}

.nps-label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    font-weight: bold;
}

.nps-wrapper {
    display: inline-block;
    text-align: center;
}

.nps-labels {
    display: flex;
    justify-content: space-between;
}

.nps-labels span {
    font-size: .8rem;
    opacity: .6;
}

.nps-scale {
    display: flex;
    align-items: center;
    margin-bottom: .5rem;
}

.nps-scale input[type="radio"] {
    display: none;
}

.nps-scale label {
    display: inline-flex;
    margin-right: 10px;
    width: 40px;
    height: 50px;
    border-radius: 5px;
    border: 1px solid #ccc;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: bold;
    font-size: 0.9rem;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

.nps-scale label:last-child {
    margin-right: 0;
}

.nps-scale label:hover {
    border: 1px solid #566483;
}

label:has(input[type="radio"]:checked) {
    background-color: #566483;
    border-color: #566483;
    color: #fff;
}

.form-group {
    margin-top: 1rem;
}

.submit-btn {
    margin-top: 1rem;
    padding: 0.6rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    background-color: #566483;
    color: #fff;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #3d5281;
}

.app-nps-form .accordion .accordion-item {
    border: 1px solid rgba(98, 105, 118, 0.16) !important;
}