@charset "UTF-8";
.place-finder {
  display: flex;
  flex-direction: column;
  height: calc(100vh - 60px);
  background: #fafafa;
  font-family: system-ui, -apple-system, sans-serif;
}

.place-finder-search {
  display: flex;
  gap: 8px;
  padding: 12px 16px;
  background: #f7f7f7;
  border-bottom: 1px solid #e0e0e0;
  align-items: center;
}
.place-finder-search .place-search-input {
  flex: 1;
  padding: 8px 12px;
  border: 1px solid #d0d0d0;
  border-radius: 4px;
  font-size: 14px;
}
.place-finder-search .btn-use-location,
.place-finder-search .btn-view-toggle,
.place-finder-search .btn-map-size-toggle,
.place-finder-search .btn-density-toggle {
  padding: 8px 12px;
  border: 1px solid #d0d0d0;
  background: #fff;
  border-radius: 4px;
  cursor: pointer;
  font-size: 13px;
  white-space: nowrap;
}
.place-finder-search .btn-use-location:hover,
.place-finder-search .btn-view-toggle:hover,
.place-finder-search .btn-map-size-toggle:hover,
.place-finder-search .btn-density-toggle:hover {
  background: #f0f0f0;
}

.place-finder-body {
  flex: 1;
  display: flex;
  min-height: 0;
}

.place-finder-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 0;
}

.place-finder-map-row {
  flex: 0 0 45%;
  min-height: 0;
  border-bottom: 1px solid #e0e0e0;
}

.place-finder-list-row {
  flex: 1;
  min-height: 0;
  position: relative;
  overflow: hidden;
  display: flex;
}

.place-finder.map-maximized .place-finder-map-row {
  flex: 1 1 auto;
}
.place-finder.map-maximized .place-finder-list-row {
  display: none;
}

.place-finder-sidebar {
  width: 220px;
  background: #f7f7f7;
  border-right: 1px solid #e0e0e0;
  padding: 16px 12px;
  overflow-y: auto;
  flex-shrink: 0;
}

.filter-section {
  margin-bottom: 20px;
}
.filter-section .filter-section-label {
  font-weight: 600;
  color: #666;
  text-transform: uppercase;
  font-size: 11px;
  margin-bottom: 8px;
}

.filter-chips {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.filter-chips .filter-chip {
  padding: 4px 10px;
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 12px;
  cursor: pointer;
  font-size: 12px;
  text-align: left;
}
.filter-chips .filter-chip.active {
  background: #1e3a5f;
  color: #fff;
  border-color: #1e3a5f;
}

.filter-distance select {
  width: 100%;
  padding: 6px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 12px;
}
.filter-distance small {
  display: block;
  color: #888;
  font-size: 10px;
  margin-top: 4px;
}

.filter-amenities {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.filter-amenities label {
  font-size: 12px;
  color: #444;
  cursor: pointer;
}

.place-finder-main {
  flex: 1;
  position: relative;
  min-width: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.place-list-container {
  height: 100%;
  overflow-y: auto;
  padding: 16px;
  background: #fafafa;
  min-width: 0;
}

.place-list-results {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.place-card {
  display: flex;
  gap: 12px;
  padding: 12px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  cursor: pointer;
  transition: box-shadow 0.1s, border-color 0.1s, background 0.1s;
}
.place-card:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.place-card.is-selected {
  background: #eef4fb;
  border-color: #1e3a5f;
  box-shadow: 0 2px 10px rgba(30, 58, 95, 0.18);
}
.place-card .place-card-icon {
  font-size: 28px;
  flex-shrink: 0;
}
.place-card .place-card-body {
  flex: 1;
  min-width: 0;
}
.place-card .place-card-name {
  font-weight: 600;
  font-size: 14px;
  color: #222;
}
.place-card .place-card-meta {
  font-size: 12px;
  color: #888;
  margin-top: 2px;
}

.place-finder.density-compact .place-card {
  padding: 6px 12px;
  gap: 10px;
  border-radius: 4px;
}
.place-finder.density-compact .place-card .place-card-icon {
  font-size: 18px;
}
.place-finder.density-compact .place-card .place-card-name {
  font-size: 13px;
  display: inline;
}
.place-finder.density-compact .place-card .place-card-meta {
  font-size: 11px;
  display: inline;
  margin-left: 8px;
}
.place-finder.density-compact .place-card .place-card-body {
  display: flex;
  align-items: center;
  gap: 8px;
}

.empty-state {
  text-align: center;
  padding: 40px 20px;
  color: #888;
  font-style: italic;
}

.btn-load-more {
  display: block;
  margin: 20px auto;
  padding: 10px 24px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  cursor: pointer;
  font-size: 13px;
}
.btn-load-more:hover {
  background: #f0f0f0;
}

.place-map-container {
  height: 100%;
  width: 100%;
  min-width: 0;
  min-height: 0;
}
.place-map-container #placeMap {
  height: 100%;
  width: 100%;
}

.place-map-marker {
  background: transparent;
  border: 0;
}
.place-map-marker .place-map-marker-pin {
  position: relative;
  width: 36px;
  height: 40px;
  background: #1e3a5f;
  border: 2px solid #fff;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
}
.place-map-marker .place-map-marker-glyph {
  transform: rotate(45deg);
  font-size: 16px;
  line-height: 1;
}
.place-map-marker.place-map-marker-highlighted .place-map-marker-pin {
  background: #d9534f;
  width: 42px;
  height: 46px;
}
.place-map-marker.place-map-marker-highlighted .place-map-marker-glyph {
  font-size: 18px;
}

.place-side-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 380px;
  max-width: 100%;
  height: 100%;
  background: #fff;
  border-left: 2px solid #1e3a5f;
  box-shadow: -4px 0 16px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  z-index: 10;
  transform: translateX(100%);
  transition: transform 0.25s ease;
  pointer-events: none;
}
.place-side-panel.is-open {
  transform: translateX(0);
  pointer-events: auto;
}
.place-side-panel .place-side-panel-header {
  padding: 12px 16px;
  background: #1e3a5f;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.place-side-panel .place-side-panel-header h3 {
  margin: 0;
  font-size: 15px;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.place-side-panel .place-side-panel-header .place-side-panel-close {
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
}
.place-side-panel .place-side-panel-header .place-side-panel-close:hover {
  background: rgba(255, 255, 255, 0.15);
}
.place-side-panel .place-side-panel-body {
  flex: 1;
  overflow-y: auto;
  padding: 14px 16px;
  font-size: 13px;
}
.place-side-panel .place-side-panel-body > div {
  margin-bottom: 8px;
}
.place-side-panel .place-side-panel-footer {
  padding: 10px 16px;
  border-top: 1px solid #e0e0e0;
  text-align: right;
}
.place-side-panel .place-side-panel-footer .place-side-panel-detail-link {
  color: #1e3a5f;
  text-decoration: none;
  font-weight: 600;
}
.place-side-panel .place-side-panel-footer .place-side-panel-detail-link:hover {
  text-decoration: underline;
}

.place-detail {
  max-width: 1100px;
  margin: 20px auto;
  padding: 0 20px;
  font-family: system-ui, -apple-system, sans-serif;
}

.place-detail-back {
  display: inline-block;
  margin-bottom: 12px;
  color: #1e3a5f;
  text-decoration: none;
  font-size: 13px;
}
.place-detail-back:hover {
  text-decoration: underline;
}

.place-detail-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 20px;
}
.place-detail-header .place-detail-title {
  display: flex;
  align-items: center;
  gap: 12px;
}
.place-detail-header .place-detail-title .place-detail-icon {
  font-size: 32px;
}
.place-detail-header .place-detail-title h1 {
  margin: 0;
  font-size: 28px;
  color: #1e3a5f;
}
.place-detail-header .place-detail-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.place-detail-header .place-type-badge {
  background: #1e3a5f;
  color: #fff;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  text-transform: uppercase;
}
.place-detail-header .btn-share {
  padding: 6px 14px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  cursor: pointer;
}

.place-detail-body {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
}

.place-detail-info h3 {
  margin-top: 24px;
  margin-bottom: 8px;
  color: #1e3a5f;
  font-size: 16px;
}

.place-detail-fields {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 6px 12px;
}
.place-detail-fields dt {
  font-weight: 600;
  color: #888;
}
.place-detail-fields dd {
  margin: 0;
}

.place-detail-hours,
.place-detail-fuel,
.place-detail-amenities {
  list-style: none;
  padding: 0;
  margin: 0;
}
.place-detail-hours li,
.place-detail-fuel li,
.place-detail-amenities li {
  padding: 4px 0;
  font-size: 13px;
}

.place-detail-map #placeDetailMap {
  height: 360px;
  border-radius: 6px;
  border: 1px solid #e0e0e0;
}

.places-region-breadcrumb {
  padding: 10px 16px;
  background: #f7f7f7;
  border-bottom: 1px solid #e0e0e0;
  flex-shrink: 0;
}
.places-region-breadcrumb ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #888;
}
.places-region-breadcrumb ol li::after {
  content: "›";
  margin-left: 6px;
  color: #888;
}
.places-region-breadcrumb ol li:last-child::after {
  content: "";
  margin: 0;
}
.places-region-breadcrumb ol a {
  color: #1e3a5f;
  text-decoration: none;
}
.places-region-breadcrumb ol a:hover {
  text-decoration: underline;
}
.places-region-breadcrumb ol li[aria-current=location] {
  color: #222;
  font-weight: 600;
}
.places-region-breadcrumb .places-region-breadcrumb-close {
  background: transparent;
  border: 1px solid #d0d0d0;
  color: #222;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  margin-left: 8px;
  padding: 0;
}
.places-region-breadcrumb .places-region-breadcrumb-close:hover {
  background: #fff;
  border-color: #d9534f;
  color: #d9534f;
}

.place-finder .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/*# sourceMappingURL=place-finder.css.map */
