/*!**********************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[5].rules[0].oneOf[0].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[5].rules[0].oneOf[0].use[2]!./src/styles.css?ngGlobalStyle ***!
  \**********************************************************************************************************************************************************************************************************************/
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;  
  background: transparent;
  color: #333;
}

.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  white-space: nowrap;
  direction: ltr;
  font-feature-settings: 'liga';
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.container {
  max-width: 100%;
  margin: 0;
  padding: 0;
  background: transparent;
}

.container.is-condensed .search-container {
  border-bottom: none;
  padding-bottom: 1.5rem;
}

.search-container {
  padding: 2rem;
  border-bottom: 1px solid #dee2e6;
}

.search-container h1 {
  margin: 0 0 1rem 0;
  font-size: 2rem;
  color: #2c3e50;
}

.subtitle {
  margin: 0;
  color: #5c6c7a;
  font-size: 1rem;
}

.search-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  position: relative;
}

.search-input {
  flex: 1;
  padding: 0.75rem 0.5rem;
  font-size: 1rem;
  border: 2px solid #ced4da;
  border-radius: 6px;
  transition: border-color 0.2s ease;
}

.search-input:focus {
  outline: none;
  border-color: #007bff;
}

.clear-search-button {
  padding: 0.65rem 1rem;
  border: 1px solid #ced4da;
  border-radius: 6px;
  background: #f8f9fa;
  color: #495057;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.clear-search-button:hover {
  background: #e9ecef;
  border-color: #adb5bd;
}

.autocomplete-panel {
  position: absolute;
  top: calc(100% + 0.35rem);
  left: 0;
  width: min(480px, 90%);
  z-index: 10;
  background: #ffffff;
  border: 1px solid #d0d7de;
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
  display: flex;
  flex-direction: column;
  max-height: 280px;
  overflow-y: auto;
  padding: 0.35rem 0;
}

.autocomplete-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  padding: 0.4rem 0.85rem;
  border: none;
  background: transparent;
  text-align: left;
  cursor: pointer;
  font-size: 0.95rem;
  color: #1f2937;
  transition: background 0.15s ease;
}

.autocomplete-item--result {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
  justify-content: flex-start;
}

.autocomplete-item:hover,
.autocomplete-item:focus {
  background: #f1f5f9;
}

.autocomplete-item.is-highlighted {
  background: #dbeafe;
  font-weight: 600;
  border-left: 3px solid #1d4ed8;
}

.autocomplete-primary {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.autocomplete-item--result .autocomplete-primary {
  width: 100%;
  font-weight: 600;
  white-space: normal;
  line-height: 1.4;
}

.autocomplete-secondary {
  width: 100%;
  font-size: 0.8rem;
  color: #6b7280;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.autocomplete-item--result .autocomplete-secondary {
  white-space: normal;
  line-height: 1.4;
}

.autocomplete-type {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.1rem 0.35rem;
  border-radius: 999px;
  background: #eff6ff;
  color: #1d4ed8;
}

.autocomplete-type[data-type='city'] {
  background: #fdf2f8;
  color: #be185d;
}

.main-content {
  display: flex;
  gap: 2rem;
  padding: 2rem;
}

.sidebar {
  flex: 0 0 auto;
  min-width: 280px;
  max-width: 350px;
  position: sticky;
  top: 1rem;
  align-self: flex-start;
  max-height: calc(100vh - 2rem);
  overflow-y: auto;
  overflow-x: hidden;
}

.filter-section {
  padding-bottom: 1rem;
  border-bottom: 1px solid #e9ecef;
}

.filter-section:last-child {
  border-bottom: none;
}

.mobile-filters-bar {
  display: none;
}

.mobile-filters-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  border: 1px solid #d0d7de;
  border-radius: 999px;
  background: #f8f9fa;
  color: #1f2937;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.mobile-filters-toggle:hover,
.mobile-filters-toggle:focus {
  background: #eff6ff;
  border-color: #93c5fd;
  outline: none;
  box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.2);
}

.mobile-filters-toggle-icon {
  font-size: 1.25rem;
  line-height: 1;
}

.filter-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.filter-header {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.filter-header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.facet-toggle {
  border: 0px solid #d0d7de;
  background: #ffffff;
  color: #2563eb;
  cursor: pointer;
  width: 2rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  font-size: 0.95rem;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.facet-toggle:hover {
  background: #eff6ff;
  border-color: #93c5fd;
}

.facet-toggle-icon {
  font-weight: 600;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.facet-toggle-icon.is-expanded {
  transform: rotate(180deg);
}

.filter-content {
  font-size: 0.95rem;
}

.filters-title {
  margin-bottom: 1rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #6c757d;
}

.facets-loading,
.facets-error {
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.facets-error {
  color: #c0392b;
}

.facet-search {
  flex: 0 0 50%;
  padding: 0.25rem 0.1rem;
  border: none;
  border-bottom: 1px solid #d0d7de;
  border-radius: 0;
  font-size: 0.85rem;
}

.facet-search:focus {
  outline: none;
  border-bottom-color: #007bff;
}
.filter-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.facet-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.25rem;
  border-radius: 4px;
  transition: background 0.2s ease;
}

.facet-option.is-selected {
  background: #e7f3ff;
}

.facet-option input {
  margin: 0;
}

.facet-option-label {
  flex: 1;
  font-size: 0.9rem;
  word-break: break-word;
  overflow-wrap: break-word;
}

.facet-option-count {
  padding: 0.15rem 0.45rem;
  background: #f1f3f5;
  border-radius: 12px;
  font-size: 0.75rem;
  color: #6c757d;
}

.facet-show-more {
  margin-top: 0.35rem;
  padding: 0.2rem 0.55rem;
  border: 1px solid #cbd5f5;
  border-radius: 999px;
  background: #f5f8ff;
  color: #1e40af;
  cursor: pointer;
  font-size: 0.75rem;
  letter-spacing: 0.2px;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.facet-show-more:hover {
  background: #e8f0ff;
  border-color: #93c5fd;
}

.results-container {
  flex: 1;
  min-width: 0;
}

.results-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #e9ecef;
}

#stats {
  font-size: 0.95rem;
  color: #6c757d;
  font-weight: 500;
}

.stats-time {
  font-size: 0.85rem;
  color: #8898aa;
}

#current-refinements {
  margin-bottom: 1.5rem;
}

.results-list {
  display: grid;
  gap: 1.5rem;
}

.hit {
  padding: 1.5rem;
  background: white;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.hit:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  border-color: #007bff;
}

.hit-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.hit-link:hover,
.hit-link:focus,
.hit-link:active {
  text-decoration: none;
}

.hit-link:focus-visible {
  outline: 2px solid #004494;
  outline-offset: 4px;
  border-radius: 8px;
}

.hit-content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  overflow: hidden;
  word-wrap: break-word;
}

.hit-name {
  margin: 0;
  font-size: 1.25rem;
  color: #2c3e50;
  font-weight: 600;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.hit-description {
  margin: 0;
  color: #495057;
  line-height: 1.6;
  font-size: 0.95rem;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  overflow-wrap: anywhere;
}

.hit-meta-container {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.hit-meta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  border: 1px solid #cbd5f5;
  background: #e0e7ff;
  color: #1e40af;
  font-size: 0.8rem;
  font-weight: 500;
}

.hit-meta-icon {
  font-size: 1.1rem;
  line-height: 1;
}

.hit-meta-label {
  line-height: 1.2;
}

.hit-location {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.9rem;
  color: #6c757d;
  margin-top: 0.5rem;
}

.hit-location-icon {
  font-size: 1.1rem;
  line-height: 1;
}

.no-results {
  text-align: center;
  padding: 3rem;
  color: #6c757d;
  font-size: 1.1rem;
}

.selected-filters {
  margin-bottom: 1.25rem;
  padding: 0.75rem 1rem;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.selected-filters-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.selected-filters-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #334155;
}

.clear-filters-button {
  border: none;
  background: transparent;
  color: #2563eb;
  cursor: pointer;
  font-size: 0.85rem;
}

.selected-filters-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.selected-filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  border: 1px solid #cbd5f5;
  background: #e0e7ff;
  color: #1e40af;
  font-size: 0.85rem;
  cursor: pointer;
}

.selected-filter-chip:hover {
  background: #d6dcff;
}

.selected-filter-icon {
  font-size: 1rem;
  line-height: 1;
}

.loading-state,
.error-state {
  margin: 1rem 0;
  padding: 0.75rem 1rem;
  border-radius: 6px;
  font-size: 0.95rem;
}

.loading-state {
  background: #eef2ff;
  color: #3730a3;
}

.error-state {
  background: #fdecea;
  color: #c0392b;
}

.pagination {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
}

.page-button {
  padding: 0.5rem 1rem;
  border: 1px solid #ced4da;
  border-radius: 4px;
  background: #fff;
  color: #1971c2;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.page-button:disabled {
  cursor: not-allowed;
  color: #adb5bd;
}

.page-button:not(:disabled):hover {
  background: #f1f3f5;
}

.page-summary {
  font-size: 0.9rem;
  color: #6c757d;
}

/* InstantSearch overrides */
.ais-SearchBox-form {
  position: relative;
}

.ais-SearchBox-input {
  width: 100%;
  padding: 0.75rem 3rem 0.75rem 1rem;
  font-size: 1rem;
  border: 2px solid #ced4da;
  border-radius: 6px;
  transition: border-color 0.15s;
}

.ais-SearchBox-input:focus {
  outline: none;
  border-color: #007bff;
}

.ais-SearchBox-submit,
.ais-SearchBox-reset {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
}

.ais-RefinementList-item {
  padding: 0.5rem 0;
}

.ais-RefinementList-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 0.5rem;
}

.ais-RefinementList-checkbox {
  margin-right: 0.5rem;
}

.ais-RefinementList-count {
  margin-left: auto;
  padding: 0.15rem 0.5rem;
  background: #e9ecef;
  border-radius: 12px;
  font-size: 0.85rem;
  color: #6c757d;
}

.ais-RefinementList-showMore {
  margin-top: 0.75rem;
  padding: 0.4rem 0.75rem;
  background: transparent;
  border: 1px solid #ced4da;
  border-radius: 4px;
  color: #007bff;
  cursor: pointer;
  font-size: 0.85rem;
}

.ais-RefinementList-showMore:hover {
  background: #f8f9fa;
}

.ais-CurrentRefinements {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.ais-CurrentRefinements-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.75rem;
  background: #007bff;
  color: white;
  border-radius: 4px;
  font-size: 0.9rem;
}

.ais-CurrentRefinements-delete {
  background: transparent;
  border: none;
  color: white;
  cursor: pointer;
  padding: 0;
  margin-left: 0.25rem;
}

.ais-Pagination {
  display: flex;
  gap: 0.25rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.ais-Pagination-item {
  display: inline-block;
}

.ais-Pagination-link {
  display: block;
  padding: 0.5rem 0.75rem;
  border: 1px solid #dee2e6;
  border-radius: 4px;
  color: #007bff;
  text-decoration: none;
  transition: all 0.2s;
}

.ais-Pagination-link:hover {
  background: #f8f9fa;
}

.ais-Pagination-item--selected .ais-Pagination-link {
  background: #007bff;
  color: white;
  border-color: #007bff;
}

.ais-Pagination-item--disabled .ais-Pagination-link {
  color: #6c757d;
  cursor: not-allowed;
  opacity: 0.5;
}

@media (max-width: 768px) {
  .main-content {
    flex-direction: column;
  }
  
  .sidebar {
    flex: none;
    width: 100%;
    max-height: none;
    margin-bottom: 1.5rem;
  }

  .mobile-filters-bar {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
  }
}

.header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.sort-control {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.sort-label {
  color: #64748b;
}

.sort-select {
  padding: 0.25rem 0.5rem;
  border: 1px solid #cbd5e1;
  border-radius: 4px;
  background-color: white;
  font-size: 0.9rem;
  color: #334155;
  cursor: pointer;
}

.sort-select:focus {
  outline: 2px solid #2563eb;
  border-color: #2563eb;
}


/*# sourceMappingURL=styles.css.map*/