/* Popup modal styles */
.popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 0px !important;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    z-index: 99999;
    max-width: 500px;
}

.close-btn {
    position: absolute;
    top: 0 !important;
    right: 0;
    padding: 2px 5px;
    background-color: black;
    border: none;
    font-size: 14px;
    border-radius: 0px;
    cursor: pointer;
}
.close-btn:hover {
    background-color: black;
}
