/* Modal styles */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal-container {
    background-color: white;
    width: 100%;
    max-width: 660px;
    border-radius: 8px;
    padding: 20px 20px 100px;
    position: relative;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    background: none;
    border: none;
    padding: 0;
    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    border-radius: 50%;
}

.modal-close:hover {
    background-color: #f0f0f0;
}

.modal-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
}

.modal-content {
    text-align: center;
    margin: 30px 0;
}
.modal-messagebox{
	margin-bottom: 40px;
}
.modal-message {
	margin-bottom: 10px;
    font-size: 20px;
    text-align: center;
	font-weight: 700;
	color: #333;
}

.modal-email {
    width: 60%;
    padding: 15px;
    border: none;
    border-bottom: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    margin-top: 20px;
    margin-bottom: 40px;
    box-sizing: border-box;
    text-align: center;
    background-color: #f9f9f9;
    outline: none;
    color: #333;
    cursor: default;
}

#submitEmail {
    background: #ff3c3c;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    padding: 12px 48px;
    cursor: pointer;
    letter-spacing: 2px;
    margin-top: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
} 