
/* ----------------------------------------------------
  ADD YOUR CUSTOM STYLES HERE
------------------------------------------------------- */

/* Success modal popup */
.success-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
    box-sizing: border-box;
}

.success-modal-popup {
    background: #fff;
    border-radius: 8px;
    padding: 32px 40px;
    max-width: 480px;
    width: 100%;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.success-modal-message {
    margin: 0 0 24px;
    font-size: 16px;
    line-height: 1.5;
    color: #222;
    font-family: "Lato", "MINISeriff", sans-serif;
}

.success-modal-close {
    font-family: "MINISanSeriff-Bold", "MINISeriff", sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    background: #000;
    color: #fff;
    border: 2px solid #000;
    padding: 12px 32px;
    cursor: pointer;
    border-radius: 0;
    letter-spacing: 0.5px;
}

.success-modal-close:hover {
    background: #333;
    border-color: #333;
    color: #fff;
}

@media screen and (max-width: 575px) {
    .success-modal-popup {
        padding: 24px 20px;
    }
    .success-modal-message {
        font-size: 15px;
    }
    .success-modal-close {
        padding: 10px 24px;
        font-size: 13px;
    }
}