/* Sayfanın üst kısmına boşluk */
body {
  margin: 0;
  font-family: sans-serif;
  background-color: #f4f4f4;
  padding-top: 30px; /* Sayfanın en üstüne boşluk */
}

/* Harita bölümü */
.map-section {
  background-color: #ddd;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-bottom: 60px;
  margin-top: 30px;/* Harita ile alt kısım arasında daha fazla boşluk */
}

/* Alt içerik bölümü */
.content-section {
  display: flex;
  flex-direction: column;
  padding: 30px 20px;
  gap: 30px; /* Sütunlar arası boşluk */
}

@media (min-width: 768px) {
  .content-section {
    display: flex;
    flex-direction: row;
    align-items: flex-start; /* Sütunların üstten hizalanması */
    gap: 30px;
  }
}


.quake-list, .quake-details {
  flex: 1;
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  height: 100%; /* Eşit yükseklik için */
}


.butonlar a {
  text-decoration: none;
}

.butonlar button {
  width: 100%;
  padding: 15px 20px;
  font-size: 18px;
  font-weight: bold;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: linear-gradient(145deg, #e0e0e0, #cfcfcf);
  color: #333;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  text-align: left;
}

.butonlar button:hover {
  background: linear-gradient(145deg, #d32f2f, #b71c1c);
  color: #fff;
  transform: scale(1.02);
}

.quake-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px; /* Butonlar arası boşluk */
}

.quake-list li {
  display: block;
  width: 100%;
}





/* Harita görünümü */
#map {
  width: 100%;
  height: 400px;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}
