/* Overlay covering the entire screen */
.button-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    /* Semi-transparent black */
    z-index: 1000;
    /* Ensures it's above other content */
}

/* The popup box */
.button-popup-content {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* Center the box */
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
    z-index: 1001;
    /* Above the overlay */
    max-width: 500px;
    /* Adjust as needed */
    width: 90%;
    /* Responsive width */
}

/* The 'Continue' button */
.button-popup-continue-btn {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 20px;
    background-color: #007436;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.button-popup-continue-btn:hover {
    background-color: #d31a35;
}

.button-popup-close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    border: none;
    background: none;
    cursor: pointer;

}

.button-popup-close-btn:hover {
    color: #d31a35;
    /* Optional: change color on hover */
}