/*============================================================================================*/
/* Your custom styles below */
/*============================================================================================*/

/* Premium Segmented / Pill styled Yes-No & Social Engagement Radio Buttons */
.yesno-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin: 15px 0;
}

.yesno-label {
    cursor: pointer;
    display: inline-block;
    user-select: none;
    margin: 0;
}

.yesno-label input[type="radio"] {
    display: none;
}

.yesno-label .yesno-text {
    display: inline-block;
    padding: 6px 20px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid #e2e8f1;
    background-color: #ffffff;
    color: #4a5568;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.yesno-label:hover .yesno-text {
    border-color: #b8c2cc;
    background-color: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.yesno-label input[type="radio"]:checked + .yesno-text {
    background: #C01E3D;
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 6px 15px rgba(192, 30, 61, 0.35);
    transform: translateY(-1px);
}

/* Accent for "Yes" button */
.yesno-label-yes input[type="radio"]:checked + .yesno-text {
    background: #C01E3D;
    box-shadow: 0 6px 15px rgba(192, 30, 61, 0.35);
}

/* Accent specifically for "No" button */
.yesno-label-no input[type="radio"]:checked + .yesno-text {
    background: #C01E3D;
    box-shadow: 0 6px 15px rgba(192, 30, 61, 0.35);
}
