/* Modal arka planı */
.modal {
  display: none;
  position: fixed;
  z-index: 9999; /* En üstte görünmesini sağlamak için yüksek bir z-index değeri */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4); /* Yarı saydam arka plan */
}

/* Modal içerik */
.modal-content {
  position: absolute;
  top: 10%; /* En üste yakın bir konum */
  left: 50%;
  transform: translateX(-50%); /* Yatay merkezleme */
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  width: 80%;
  max-width: 600px;
  text-align: center;
  z-index: 10000; /* İçeriğin de en üstte kalmasını sağlamak için daha yüksek bir z-index değeri */
}

/* Close button */
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}
