/* Popup Style */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999; /* Ensures the popup is on top */
    justify-content: center;
    align-items: center;
}

.popup-content {
    background-color: #000;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    width: 300px;
    position: relative;
}

.popup .close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
}


#openPopupBtn {
    position: fixed;
    bottom: 5px;  /* Distance from the bottom */
    left: 50%;    /* Horizontal center */
    transform: translateX(-50%); /* Adjust for centering the button */
    width: 200px; /* Set the width of the button */
    padding: 10px 20px;
    background-color: #be9841;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    z-index: 10000; /* Ensures button is above other elements */
}

#openPopupBtn:hover {
    background-color: #1e1e1e;
}
}