/* Şehirler Sayfası Özel CSS */

/* Kaydırma çubuğu özelleştirme */
.district-list::-webkit-scrollbar {
  width: 4px;
}

.district-list::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.district-list::-webkit-scrollbar-thumb {
  background: #ddd;
  border-radius: 4px;
}

/* Hover efektleri kaldırıldı - Statik UI */
.hover-bg-light {
  transition: none;
}

.hover-primary {
  transition: none;
}

/* Arama Önerileri Kutusu - CLEAN TAG REDESIGN */
.allow-overflow {
    overflow: visible !important;
}

.header-search-container {
    position: relative;
    z-index: 1060; /* Ensure search container is above other cards */
}

.search-suggestions-box {
  position: relative;
  width: 100%;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  margin-top: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); /* Reduced shadow as it's now in the flow */
  z-index: 10;
  padding: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-height: 500px;
  overflow-y: auto;
}

.suggestion-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 4px;
  text-decoration: none !important;
  font-size: 0.8rem;
  font-weight: 400;
  transition: all 0.15s ease;
  border: 1px solid #dee2e6;
  background: #fff;
  color: #6c757d;
}

/* Şehir Badgesi - Slight emphasis */
.suggestion-badge-city {
  border-color: #0d6efd;
  color: #0d6efd;
  background: rgba(13, 110, 253, 0.02);
  font-weight: 500;
}

.suggestion-badge-city:hover {
  background: rgba(13, 110, 253, 0.05);
  border-color: #0d6efd;
}

/* İlçe Badgesi */
.suggestion-badge-district {
  color: #6c757d;
  border-color: #dee2e6;
}

.suggestion-badge-district:hover {
  background: #f8f9fa;
  border-color: #adb5bd;
  color: #333;
}

/* Koyu Tema Uyumu */
[data-theme="dark"] .search-suggestions-box {
  background: #1e2530;
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .suggestion-badge {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .suggestion-badge-city {
  color: #74a9f3;
  border-color: rgba(116, 169, 243, 0.3);
}

[data-theme="dark"] .suggestion-badge-city:hover {
  background: rgba(116, 169, 243, 0.1);
  border-color: #74a9f3;
}

[data-theme="dark"] .suggestion-badge-district {
  color: #adb5bd;
  border-color: rgba(255, 255, 255, 0.15);
}

[data-theme="dark"] .suggestion-badge-district:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}
