.popup-component {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;

    z-index: 5000;

    padding: 20px;

    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    overflow-y: scroll;

    background-color: rgb(from var(--background) r g b / var(--alpha));
}

.popup-content {
    max-width: 95vw;
    max-height: 95vh;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 20px;
    border-radius: 10px;
    border: 2px solid var(--primary);
}
.popup-content-close{
    position: absolute;
    right: -12px;
    top: -12px;
    width: 32px;
    height: 32px;
    background: var(--primary);
    border-radius: 50%;
    z-index: 10;
    cursor: pointer;
    display: flex;align-items: center;justify-content: center;
}
.popup-content-close:hover{opacity: 0.9}

hr {
    width: 100%;
    margin: 20px 0;
}
