.fooders-magnet-button {
    background-color: #e8956f;
    color: #ffffff;
    padding: 10px 30px;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    line-height: 29px;
    transition: background-color 0.2s ease-in-out;
}

.fooders-magnet-button:hover {
    background-color: #d8845e;
}

/* Modal overlay */
#fooders-modal-overlay {
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Modal content box */
#fooders-modal-content {
    position: relative;
    width: 90vw;
    height: 90vh;
    max-width: 900px;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Close button */
#fooders-modal-close {
    position: absolute;
    top: 10px;
    right: 14px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

#fooders-modal-close:hover {
    background: rgba(0, 0, 0, 0.8);
}

/* iframe */
#fooders-lead-magnet-iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Bouton fermer affiché après soumission réussie */
#fooders-close-after-submit {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 10px 32px;
    font-size: 15px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

#fooders-close-after-submit:hover {
    background-color: #0056b3;
}
