#hcf-wrapper {
  display: flex;
  flex-direction: row;
  min-height: 600px;
  border: 1px solid #ddd;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

#hcf-sidebar {
  width: 340px;
  max-width: 100%;
  padding: 16px;
  border-right: 1px solid #ddd;
  background: #f9f9f9;
  box-sizing: border-box;
  overflow-y: auto;
}

#hcf-sidebar h2 {
  margin-top: 0;
}

#hcf-map {
    width: 100%;
    height: 500px !important;
    min-height: 400px;
    position: relative;
    display: block;
}

/* Search block */
.hcf-search-block {
  margin-bottom: 16px;
}

.hcf-search-block input[type="text"] {
  width: 100%;
  padding: 6px 8px;
  margin-bottom: 8px;
  box-sizing: border-box;
}

.hcf-inline-fields {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}

.hcf-inline-fields input,
.hcf-inline-fields select {
  flex: 1;
  padding: 6px 8px;
}

#hcf-search-btn {
  display: inline-block;
  padding: 6px 12px;
  background: #0073aa;
  border: none;
  color: #fff;
  cursor: pointer;
  border-radius: 3px;
}

#hcf-search-btn:hover {
  background: #005f8d;
}

/* Results */
#hcf-results {
  margin-top: 16px;
}

.hcf-result-item {
  padding: 8px;
  border-bottom: 1px solid #e0e0e0;
  cursor: pointer;
}

.hcf-result-item h3 {
  margin: 0 0 4px;
  font-size: 15px;
}

.hcf-result-item p {
  margin: 0 0 2px;
  font-size: 13px;
}

/* Profile page */
.hcf-profile {
  border: 1px solid #ddd;
  padding: 16px;
  border-radius: 4px;
  background: #fff;
}

.hcf-profile h2 {
  margin-top: 0;
}

.hcf-profile-address {
  margin-bottom: 10px;
}

.hcf-profile-description {
  margin-top: 12px;
}

.hcf-profile-custom-fields {
  margin: 0;
}

.hcf-profile-custom-fields dt {
  font-weight: 600;
}

.hcf-profile-custom-fields dd {
  margin: 0 0 6px 0;
}

/* Pills */
.hcf-pill {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 11px;
  margin-right: 4px;
  margin-bottom: 4px;
}
.hcf-pill-green {
  background: #d9f2d9;
  color: #256029;
}
.hcf-pill-blue {
  background: #d7ecff;
  color: #225c8d;
}
.hcf-pill-gray {
  background: #eee;
  color: #555;
}

/* Responsive */
@media (max-width: 768px) {
  #hcf-wrapper {
    flex-direction: column;
  }
  #hcf-sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #ddd;
  }
  #hcf-map {
    min-height: 400px;
  }
}