/* Popup (arka plan) */
.modal {
    display: none; /* Varsayılan olarak gizlidir */
    position: fixed; /* Yerinde kal */
    z-index: 1; /* Üstte */
    left: 0;
    top: 0;
    width: 100%; /* Ful Genişlik */
    height: 100%; /* Ful Yükseklik */
    overflow: auto; /* Gerekirse kaydırmayı etkinleştir */
    background-color: rgb(0,0,0); /* Yedek renk */
    background-color: rgba(0,0,0,0.4); /* Siyah w / opaklık */
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
}

.modal-content-form {
    background-color: rgba(255, 255, 255, 0.84); /* Example: Red background color for the form */
    position: fixed; /* Position fixed to stay in the center */
    top: 50%; /* Move the top edge to the center vertically */
    left: 50%; /* Move the left edge to the center horizontally */
    transform: translate(-50%, -50%); /* Translate back by half of its own width and height */
    padding: 20px;
    border: 1px solid #888;
    width: 25%;
    min-width: 300px;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}