/* Your CSS styles for the popup go here */
/* Center the popup and overlay it with a semi-transparent background */

/* Add this CSS to disable scrolling */
.disable-scroll {
    overflow: hidden;
}

/* Semi-transparent overlay */
#custom-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 1); /* Darken to 100% */
    z-index: 9999;
}

/* Popup container */
#custom-popup-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 20px;
    max-width: 400px;
    z-index: 10000;
}
