#dpq-store-finder {
  max-width: 1000px;
  margin: auto;
  font-family: Arial;
}

.dpq-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.dpq-controls input,
.dpq-controls select,
.dpq-controls button {
  padding: 8px;
}

#map {
  height: 400px;
  margin-top: 20px;
}

#results {
  margin-top: 20px;
}

.dpq-result {
  padding: 10px;
  border-bottom: 1px solid #ddd;
}

.dpq-toggle {
  margin-top: 10px;
}

.dpq-toggle button {
  margin-right: 5px;
}

/* Mobile */
@media (max-width: 768px) {
  .dpq-controls {
    flex-direction: column;
  }
}
``