/* Tur Kartı Stilleri */
.tour-card {
  transition: transform 0.2s, box-shadow 0.2s;
}

.tour-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.tour-image {
  object-fit: cover;
  height: 200px; /* Sabit yükseklik */
}

.tour-tag {
  top: 10px;
  left: 10px;
  border-radius: 5px;
}

/* Tarih Listesi Stili */
.all-dates {
  display: none; /* Başlangıçta gizli */
  top: 100%;
  left: 0;
  z-index: 10;
  max-height: 150px;
  overflow-y: auto;
  width: 90%;
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.date-container:hover .all-dates {
  display: block; /* Fare üzerine gelindiğinde göster */
}

/* Mobil Cihazlar için Stiller */
@media (max-width: 767.98px) {
  .tour-card .row {
    flex-direction: column;
  }

  .tour-image {
    height: 150px; /* Mobilde daha küçük resim */
  }

  .card-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .card-footer .btn {
    width: 100%;
    margin-top: 10px;
  }

  .all-dates {
    width: 100%; /* Mobilde genişlik */
    max-height: 150px; /* Daha fazla tarih göster */
  }
}