/* New Alert  */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}
  
.popup {
    background-color: rgba(0, 0, 0, 0.9);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-size: 20px;
}

.popup .message br {
    display: block;
    content: "";
    margin-top: 10px;
}
  
.button-container {
    display: flex;
    justify-content: space-between;
}

.button-container button {
    flex-grow: 1;
    padding: 20px 40px;
    background-color: #0d0d0d;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
}

.button-container button:hover {
    background-color: rgba(0, 0, 0, 0.307);
}

.keycode {
    position: fixed;
    font-size: 1.8vh;
    z-index: 9999999;
    color: red;
    pointer-events: none;
}