.popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    padding: 20px;
    border-radius: 10px;
    z-index: 9;
    width: 300px;
    background: #333;
    transform: translateX(-50%) translateY(-50%);
}

.popup-title{
    font-size: 20px;
}

.popup-description{
    margin-top: 10px;
    font-size: 14px;
}

.popup .btn {
    margin-top: 10px;
    background: #333333;
    color: red;
    text-align: end;
    border: none;
    cursor: pointer;
    font-family: 'JetBrains Mono', monospace;
}

.popup .cancel {
}

.popup .btn:hover, .open-button:hover {
    opacity: 1;
}