.search-container {
  max-width: 500px;
  margin: 0 auto 40px;
}

.search-input {
  width: 100%;
  padding: 15px 25px;
  font-size: 16px;
  border: 2px solid #ddd;
  border-radius: 50px;
  outline: none;
  transition: all 0.3s ease;
}

.search-input:focus {
  border-color: #FD4326;
  box-shadow: 0 0 15px rgba(253, 67, 38, 0.2);
}

.state-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px 20px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
  margin-bottom: 20px;
  border: 2px solid transparent;
}

.state-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-color: #FD4326;
}

.state-card .state-icon {
  font-size: 40px;
  color: #FD4326;
  margin-bottom: 15px;
}

.state-card h4 {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin: 0 0 5px;
}

.state-card .city-count {
  font-size: 13px;
  color: #888;
}

.city-card {
  background: #fff;
  border-radius: 10px;
  padding: 20px 15px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  margin-bottom: 15px;
  border: 2px solid transparent;
}

.city-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  border-color: #FD4326;
}

.city-card a {
  text-decoration: none;
  color: #333;
  display: block;
}

.city-card a:hover {
  color: #FD4326;
}

.city-card .city-icon {
  font-size: 28px;
  color: #FD4326;
  margin-bottom: 10px;
}

.city-card h5 {
  font-size: 14px;
  font-weight: 600;
  margin: 0;
}

.btn-back {
  background-color: #FD4326;
  color: #fff;
  border: none;
  padding: 10px 25px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-back:hover {
  background-color: #e53a20;
  transform: translateX(-5px);
}

.btn-back i {
  margin-right: 8px;
}

.no-results {
  text-align: center;
  padding: 40px;
  color: #888;
  font-size: 18px;
}

.state-badge {
  display: inline-block;
  background: linear-gradient(135deg, #FD4326, #ff6b4a);
  color: #fff;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 11px;
  font-weight: 600;
  margin-top: 8px;
}

.district-card {
  cursor: pointer;
  background: linear-gradient(135deg, #fff 0%, #fff5f3 100%);
}

.district-card:hover {
  background: linear-gradient(135deg, #fff5f3 0%, #ffe8e4 100%);
}

.district-card .city-icon {
  color: #ff6b4a;
}

.small-count {
  display: block;
  font-size: 11px;
  color: #888;
  margin-top: 5px;
}

@media (max-width: 768px) {
  .state-card {
    padding: 20px 15px;
  }
  
  .state-card .state-icon {
    font-size: 32px;
  }
  
  .state-card h4 {
    font-size: 14px;
  }
  
  .city-card {
    padding: 15px 10px;
  }
  
  .city-card h5 {
    font-size: 12px;
  }
}
