/* Genel içerik stilini tanımlayalım */
.content {
  position: relative;
  z-index: 1;
  text-align: center; /* İçeriği merkezlemek için */
}

/* Bildirim kutusu container'ı için stil */
.notification-container {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 400px;
  z-index: 1000; /* En üstte olması için yüksek z-index değeri */
}

/* Bildirim kutusu içeriği için stil */
.notification {
  background-color: black; /* Arka planı siyah yap */
  color: lime; /* Metin rengini neon yeşil yap */
  border: 2px solid lime; /* Kenarlığı neon yeşil yap */
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3); /* Hafif gölge ekle */
  padding: 15px;
  margin-bottom: 20px;
  position: relative; /* Pozisyon relative olarak değiştirildi */
  z-index: 1001; /* En üstte olması için yüksek z-index değeri */
}

@media (max-width: 768px) {
  .notification-container {
    width: calc(100% - 40px); /* Ekran genişliğine göre ayarlandı */
    max-width: 100%; /* Ekran genişliğine göre ayarlandı */
    bottom: 10px; /* Mobilde daha üstte görünsün */
  }
}
