.popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #1e1e1e;
    border: 2px solid #333;
    border-radius: 8px;
    overflow: hidden;
    max-width: 400px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    z-index: 999; /* Ensure the popup is on top of other elements */
}

.popup-content {
    padding: 16px;
    color: #fff;
    text-align: center; /* Center-align the content */
}

.popup-button {
    font-family: 'Courier New', Courier, monospace;
    color: #fff;
    border: none;
    padding: 8px 16px;
    margin: 5px 5px; /* Adjust this to control the horizontal space between buttons */
    border-radius: 4px;
    cursor: pointer;
    outline: none;
    width: 80px;
    height: 40px;
}

.popup-yes {
    background-color: #27c93f;
}

.popup-no {
    background-color: #ff5f56;
}

.popup-close {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ff5f56;
    cursor: pointer;
    margin-bottom: 16px;
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
    z-index: 998; /* Ensure the overlay is behind the popup but above other elements */
}
