.title {
    display: flex;
    color: #d40000;
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 25px;
    justify-content: center; /* Başlığı ortala */
    margin-top: 40px;
    line-height: 130%;
}

.namaz-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.city-card {
  background: white;
  border-radius: 6px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
  width: 300px;
  overflow: hidden;
}

.city-header {
  color: white;
  text-align: center;
  padding: 12px 0;
}

.city-header h3 {
  margin: 10px;
  font-size: 25px;
  font-weight: 600;
}

.city-header span {
  font-size: 16px;
  opacity: 0.9;
}

/* Şehir renkleri */
.istanbul { background: linear-gradient(90deg, #f76b1c, #fca53a); }
.ankara { background: linear-gradient(90deg, #0072ff, #00c6ff); }
.izmir { background: linear-gradient(90deg, #8e2de2, #c236c2); }
.bursa { background: linear-gradient(90deg, #f857a6, #ff5858); }

table {
  width: 100%;
  border-collapse: collapse;
}

td {
  padding: 14px 20px;
  font-size: 16px;
}

td:first-child { color: #555; }
td:last-child {
  text-align: right;
  font-weight: 600;
  color: #000;
}

tr:nth-child(even) { background-color: #fafafa; }

/* 🔹 Harita görseli */
.map-image {
  display: block;
  margin: 40px auto;
  max-width: 1400px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.0);
}

@media (max-width: 640px) {
  .map-image { max-width: 90%; }
}
