#bouton_update_majwp_yes,
#bouton_update_gsc_yes {
    cursor: pointer;
    padding: 0.3em 1em !important;
    line-height: 1.7em !important;
    font-size: 16px;
    background-color: rgb(72, 106, 103);
    color: rgb(255, 255, 255) !important;
    font-family: "Plus Jakarta Sans", Helvetica, Arial, Lucida, sans-serif !important;
    border-color: rgb(255, 255, 255);
    border-radius: 40px;
    border-width: 0px !important;
    transition: all 0.3s ease;
}
#bouton_update_majwp_yes:hover,
#bouton_update_gsc_yes:hover {
    background-color: rgb(54, 80, 78);
}

#bouton_update_majwp_no,
#bouton_update_gsc_no {
    cursor: pointer;
    padding: 0.3em 1em !important;
    line-height: 1.7em !important;
    font-size: 16px;
    background-color: rgb(194, 70, 27) !important;
    color: rgb(255, 255, 255) !important;
    font-family: "Plus Jakarta Sans", Helvetica, Arial, Lucida, sans-serif !important;
    border-color: rgb(255, 255, 255);
    border-radius: 40px;
    border-width: 0px !important;
    transition: all 0.3s ease;
}
#bouton_update_majwp_no:hover,
#bouton_update_gsc_no:hover {
    background-color: rgb(143, 32, 16) !important;
}

@media screen and (max-width:980px) {
    #bouton_update_majwp_yes,
    #bouton_update_gsc_yes,
    #bouton_update_majwp_no,
    #bouton_update_gsc_no {
        margin-left: 15px;
    }
}



.btn-update {
    position: relative;
    transition: opacity 0.2s;
}

.btn-update.is-loading {
    pointer-events: none;
    opacity: 0.6;
}

.btn-update .spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,255,255,0.4);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    display: inline-block;
    vertical-align: middle;
    margin-right: 6px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}