/** assets/css/jfb-forms-status.css
 ** Styles pour les modales de statut des formulaires JetFormBuilder
 **/

.ec-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.ec-modal {
    background: #fff;
    padding: 26px 30px;
    max-width: 420px;
    width: 90%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    text-align: center;
}

.ec-modal h2 {
    margin: 0 0 12px;
    font-size: 1.2rem;
}

.ec-modal p {
    margin: 0 0 20px;
}

.ec-modal button {
    background: #2196F3;
    color: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 15px;
}

.ec-modal button:hover {
    background: #1976D2;
}