.popup-component {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;

    z-index: 10;

    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 {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 20px;
    border-radius: 10px;
}

hr {
    width: 100%;
    margin: 20px 0;
}
