#rpps-contact-modal.rpps-modal {
    display: none;
    background: #1EBCAD;
    border-radius: 8px;
    padding: 32px 24px 24px 24px;
    max-width: 600px;
    position: relative;
    color: #fff;
    font-family: Arial, sans-serif;
    width: 100%;
}

.rpps-login-modal .modal-header{
    display: none;
}
.rpps-login-modal .modal-inner-wrap{
    max-height: max-content;
}

#rpps-contact-modal .rpps-user-name {
    display: block;
    font-size: 1.3em;
    font-weight: 500;
    margin-bottom: 18px;
}
#rpps-contact-modal .rpps-contact-instructions {
    display: block;
    margin-bottom: 10px;
    font-size: 1.1em;
}
#rpps-contact-list {
    background: #fff;
    border-radius: 28px;
    padding: 28px 24px;
    margin: 18px 0 18px 0;
    color: #222;
    font-size: 1.1em;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}
#rpps-contact-list label {
    display: flex;
    align-items: center;
    font-size: 1em;
    cursor: pointer;
}
#rpps-contact-list input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    accent-color: #1EBCAD;
}
#rpps-contact-modal .rpps-btn-row {
    display: flex;
    justify-content: flex-start;
    gap: 24px;
    margin-top: 10px;
}
#rpps-contact-modal .rpps-btn {
    min-width: 120px;
    padding: 10px 0;
    border-radius: 12px;
    border: none;
    font-size: 1.1em;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
#rpps-contact-modal .rpps-btn-connect {
    background: #000;
    color: #fff;
}
#rpps-contact-modal .rpps-btn-connect:hover {
    background: #222;
}
#rpps-contact-modal .rpps-btn-cancel {
    background: #888;
    color: #fff;
}
#rpps-contact-modal .rpps-btn-cancel:hover {
    background: #666;
}
@media (max-width: 700px) {
    #rpps-contact-modal.rpps-modal {
        max-width: 95vw;
        padding: 18px 4vw 18px 4vw;
    }
    #rpps-contact-list {
        padding: 16px 6vw;
    }
}

/* Rendre la modale Magento transparente et sans padding */
.rpps-login-modal .modal-inner-wrap {
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
}

.rpps-login-modal .modal-content {
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
    justify-content: center;
    align-items: center;
}

.custom-radio-checkbox {
    display: flex;
    align-items: center;
    font-size: 18px;
    margin-bottom: 8px;
    cursor: pointer;
    position: relative;
    padding-left: 32px;
}

.custom-radio-checkbox input[type="radio"] {
    opacity: 0;
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    margin: 0;
    cursor: pointer;
}

.custom-radio-checkbox .fake-checkbox {
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    border: 2px solid #1EBCAD;
    border-radius: 6px;
    background: #fff;
    box-sizing: border-box;
}

.custom-radio-checkbox input[type="radio"]:checked + .fake-checkbox {
    background: #1EBCAD;
    border: 2px solid #1EBCAD;
}

.custom-radio-checkbox .fake-checkbox:after {
    content: "";
    display: block;
    width: 12px;
    height: 12px;
    margin: 5px auto;
    border-radius: 3px;
    background: #fff;
    transition: background 0.2s;
}

.custom-radio-checkbox input[type="radio"]:checked + .fake-checkbox:after {
    background: #fff;
}