/* Popup Styles */
.popup-modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 50%;
    width: 100%;
    height: 100%;
      
}

.popup-content {
    background-color: #EAE3FF;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    max-width: 400px;
    margin: auto;
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
}

.popup-close:hover {
    color: red;
}
