﻿/* Overlay with background blur */
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
    backdrop-filter: blur(5px); /* Adjust the blur amount as needed */
    z-index: 9999;
}

/* Centered modal */
.custom-modal {
    display: none;
    position: fixed;
    width: 25%;
    height: 20%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    z-index: 10000;
    padding: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}

#closeModal {
    position: absolute;
    bottom: 10px; /* Adjust the distance from the bottom as needed */
    right: 10px; /* Adjust the distance from the right as needed */
    font-size: 10px; /* Adjust the font size of the button text */
    padding: 5px 10px; /* Adjust the padding of the button */
}

.popup-text {
    margin-top: 43px;
    margin-left: 31px;
    font-size: 27px;
}
