/*
 * Potensi Desa — Filter search + kategori
 */

.potensi-filter-card {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(12, 84, 64, 0.06);
}

.potensi-filter-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .potensi-filter-form {
    flex-direction: row;
    align-items: flex-end;
    gap: 1rem;
  }
}

.potensi-filter-form input[type="text"] {
  flex: 1;
  min-width: 0;
  padding: 0.6rem 1rem;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  font-size: 0.9375rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.potensi-filter-form input[type="text"]:focus {
  outline: none;
  border-color: #0c5440;
  box-shadow: 0 0 0 3px rgba(12, 84, 64, 0.12);
}

.potensi-filter-select {
  padding: 0.6rem 1rem;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  background: #fff;
  font-size: 0.9375rem;
  cursor: pointer;
  transition: border-color 0.2s ease;
  min-width: 180px;
}

.potensi-filter-select:focus {
  outline: none;
  border-color: #0c5440;
}

.potensi-filter-search-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.9375rem;
  color: #fff;
  background: linear-gradient(135deg, #0c5440, #0d6b54);
  box-shadow: 0 8px 18px rgba(12, 84, 64, 0.14);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  flex-shrink: 0;
}

.potensi-filter-search-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(12, 84, 64, 0.18);
}

