.popup-links-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: none;
}

.popup-links {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    background-color: #191919;
    border-radius: 10px;
    z-index: 10000;
    display: none;
    transition: all 0.3s ease;
    max-height: calc(100% - 100px);
    overflow-y: auto;
}

.popup-links-close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
    color: white;
    font-family: Helvetica, sans-serif;
    background-color: #111111;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.popup-links-close:hover {
    background-color: white;
    color: #111111;
}

.popup-links-content {
    margin-top: 5px;
}

