#customPopup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #222028;
    padding: 20px;
    text-align: center;
    box-shadow: 0px 0px 20px rgba(34, 32, 40, 1);
    border: 5px solid black;
    border-radius: 10px;
    z-index: 1001;
    width: 1260px;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#popupOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(34, 32, 40, 0.9);
    z-index: 1000;
    pointer-events: all;
}

.hidden {
    display: none;  /* Popup'ı gizleyen CSS sınıfı */
}
