.popup-content {
    background: var(--white);
    padding: 20px;
    border-radius: 8px;
    overflow-y: auto;
    box-shadow: 0 4px 8px var(--transparentBlack-01);
    position: relative;
    max-width: 400px;
    width: 100%;
    height: 500px;
}
.popup-content-logout {
    background: var(--white);;
    padding: 20px;
    border-radius: 8px;
    overflow-y: auto;
    box-shadow: 0 4px 8px var(--transparentBlack-01);
    position: relative;
    max-width: 400px;
    width: 100%;
    height: auto;
}
.popup.hidden {
    display: none;
}
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--transparentBlack-05); 
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
.popup-content {
    padding: 20px;
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 18px;
}
.popup-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}

.popup-subtitle {
    font-size: 14px;
    margin-bottom: 15px;
}
.retry-button{
    background-color: var(--redDksilos);
    color: var(--white);;
}
#popup-buttons-retry{
    justify-content: center;
    text-align: center;
}