
/* Popup stilini burada tanımlayabilirsiniz */
.popup-container {
    display: none;
    position: fixed;
    top: 20%;
    left: 50%;
    width: 90%;
    max-width: 400px;
    max-height: 90%;
    background-color: white;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    z-index: 1;
    overflow-y: auto;
    border-radius: 5px;
    cursor: move;
}

.popup-container.active {
    display: block;
    z-index: 1;
}

.popup-content {
    position: relative;
    padding: 4px;
    padding: 20px;

}
.popup-title{
    text-align: center;
    color: black;

}

.popup-close {
    background: white;
    border: solid;
    border-width: 0;
    position: relative;
    top: 15px;
    left: 7px;
    cursor: pointer;
}



/* Popup açıldığında arka planı saydam yapmak */
body.popup-open {
    overflow: hidden;
}

body.popup-open::before {
    content: "";
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    /* Siyah yarı saydam arka plan */

    /* Popup'ın altında olmalı */
}
