/* Modal Styles */
#custom-modal.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 450px;
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}

#custom-modal .modal-content {
    position: relative;
}

#custom-modal .close {
    position: absolute;
    top: -30px;
    right: 0px;
    cursor: pointer;
    font-size: 24px;
}

/* Overlay Styles */
#overlay {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black overlay */
}

/* Form Styles */
#custom-modal form {
    margin-top: 20px;
}

#custom-modal input[type="email"],
#custom-modal input[type="submit"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
}

#custom-modal #submit_email {
    background: black;
    color: white;
}
#custom-modal #message {
    margin-top: 10px;
    color: red;
}
