/* GaadiKro - Main Styles */
body {
  font-family: Arial, sans-serif;
  background: #f7f7f7;
  margin: 0;
  padding: 0;
  color: #333;
}

header {
  background-color: #0066cc;
  color: white;
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

header h1 {
  margin: 0;
  font-size: 2em;
}

.filters {
  background: #fff;
  padding: 15px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #ddd;
}

.filters label {
  font-weight: bold;
  margin-right: 5px;
}

.filters select,
.filters input[type="date"],
.filters input[type="range"] {
  padding: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

#vehicleResults {
  max-width: 1000px;
  margin: 30px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.vehicle-card {
  background: white;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}

.vehicle-card:hover {
  transform: translateY(-3px);
}

.vehicle-card h3 {
  margin: 10px 0 5px;
  color: #0066cc;
}

.vehicle-card p {
  margin: 5px 0;
}

.badge {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.85em;
  font-weight: bold;
}

.badge.available {
  background-c
