/* Fond Dark */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 97%);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Boîte modale */
.modal {
    background: #fff;
    padding: 25px;
    width: 320px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    animation: fadeIn 0.3s ease;
}

/* Titre */
.modal h2 {
    margin-bottom: 10px;
}

/* Texte */
.modal p {
    font-size: 14px;
    color: #555;
}

/* Bouton */
.modal button {
    margin-top: 20px;
    padding: 10px 20px;
    border: none;
    background: #e87684; /* style Leboncoin */
    color: white;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
}

.modal button:hover {
    background: #db5665;
}

.checkbox-line {
    display: inline;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

input[type="checkbox"] {
    width: 18px;
    height: 18px;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
