.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-content {
    background: var(--background-color);
    padding: 20px;
    max-width: 400px;
    border-radius: 8px;
    overflow-y: auto;
    max-height: 400px;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.popup-content h2 {
    color: var(--secondary-color);
}

.popup-content input {
    max-width: 95%;
} 

.popbutton {
    width: 98%;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    /*background: #ac3fde;
    color: white;*/
    background: none;
    color: var(--secondary-color);
    border: none;
    /*padding: 5px 10px;*/
    border-radius: 4px;
    cursor: pointer;
    font-family: "Wingdings";
    font-size: 26px;
}

.close-btn:hover {
    /*background: #8a32c6;*/
    color: var(--secondary-color);
    transform: scale(1.05);
    /*text-shadow: 0px 0px 1px #000;*/
}