/* Styles for the overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #00000096; /* semi-transparent background */
    z-index: 1; /* ensure it appears above other content */
}

/* Styles for the popup box */
.popup-box {
    /*min-height: 150px !important;*/
    min-width: 450px !important;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    z-index: 9999;
}

.popup-message {
   /* position: relative;
    top: 40px;*/
}

button {
    margin: 18px 0px 10px 0px;
    height: 28px;
    width: 60px;
    background: #ed2a38;
    color: #FFF;
    letter-spacing: 1px;
    border: 0px;
    border-radius: 4px;
    /*position: absolute;
    bottom: 0;
    transform: translate(-50%, 0%);*/
}
