/* Restaurant location map picker */
.eduflow-address-map {
  height: 280px;
  width: 100%;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  z-index: 1;
}
.eduflow-map-results {
  max-height: 180px;
  overflow-y: auto;
  margin-top: 0.35rem;
}
.eduflow-map-results:empty {
  display: none;
}
.eduflow-map-result {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  width: 100%;
  text-align: left;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #fff;
  padding: 0.65rem 0.75rem;
  margin-bottom: 0.35rem;
  font-size: 0.875rem;
  color: #1f2937;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.eduflow-map-result:hover,
.eduflow-map-result:focus {
  border-color: #1ec8b8;
  background: #ecfffc;
  outline: none;
}
.eduflow-map-result .eduflow-map-pin {
  flex-shrink: 0;
  line-height: 1.2;
}
.eduflow-locate-btn {
  border: 1px solid #d7dee8;
  background: #fff;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 8px;
}
.eduflow-map-results-empty {
  font-size: 0.8rem;
  color: #6b7280;
  margin: 0.35rem 0 0;
}
.eduflow-map-hint {
  font-size: 0.8rem;
  color: #6b7280;
  margin-bottom: 0.5rem;
}
