/* Button Style */
.wpe-button {
    background-color: #0073aa;
    color: #fff;
    border: none;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 5px;
}

/* Modal Styles */
.wpe-modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1000; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

.wpe-modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
    border-radius: 10px;
    position: relative;
}

/* Close Button */
.wpe-close-button {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.wpe-close-button:hover,
.wpe-close-button:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Form Styles */
#wpe-subscribe-form input[type="email"] {
    width: calc(100% - 90px);
    padding: 10px;
    margin-right: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#wpe-subscribe-form button {
    width: 80px;
}

#wpe-form-message {
    margin-top: 10px;
    font-size: 14px;
}
