/* Location Filters */
.location-filters {
  padding: 20px 20px 0 20px;
}

.filter-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 6px 16px;
  border: none;
  background: transparent;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
}

.filter-btn:hover {
  background: #0086e4;
  opacity: 0.5;
  color: #fff;
}

.filter-btn.active {
  background: #0086e4;
  color: #fff;
}

.filter-btn.active:hover {
  pointer-events: none;
  cursor: default;
}

.filter-icon {
  font-size: 16px;
  line-height: 1;
}

@media (max-width: 768px) {
  .filter-buttons {
      gap: 8px;
  }

  .filter-btn {
      padding: 10px 16px;
      min-width: 100px;
      font-size: 13px;
  }
}

@media (max-width: 480px) {
  .filter-buttons {
      flex-direction: column;
      align-items: center;
  }

  .filter-btn {
      width: 100%;
      max-width: 200px;
  }
}
