/* [project]/app/globals.css [app-client] (css) */
:root {
  --color-light-bg: #fff;
  --color-light-fg: #171717;
  --color-dark-bg: #0a0a0a;
  --color-dark-fg: #ededed;
  --map-tile-filter-dark: invert(1) hue-rotate(180deg) brightness(.9) contrast(.9);
  --background: var(--color-light-bg);
  --foreground: var(--color-light-fg);
  --map-tile-filter: none;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --background: var(--color-dark-bg);
    --foreground: var(--color-dark-fg);
    --map-tile-filter: var(--map-tile-filter-dark);
  }
}

:root[data-theme="dark"] {
  --background: var(--color-dark-bg);
  --foreground: var(--color-dark-fg);
  --map-tile-filter: var(--map-tile-filter-dark);
}

.leaflet-tile-pane {
  filter: var(--map-tile-filter);
}

.map-surface--undimmed .leaflet-tile-pane {
  filter: none;
}

html {
  height: 100%;
}

html, body {
  max-width: 100vw;
  overflow-x: hidden;
}

body {
  min-height: 100%;
  color: var(--foreground);
  background: var(--background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  flex-direction: column;
  font-family: Arial, Helvetica, sans-serif;
  display: flex;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

@media (prefers-color-scheme: dark) {
  html:not([data-theme="light"]) {
    --lightningcss-light: ;
    --lightningcss-dark: initial;
    color-scheme: dark;
  }
}

html[data-theme="dark"] {
  --lightningcss-light: ;
  --lightningcss-dark: initial;
  color-scheme: dark;
}

html[data-theme="light"] {
  --lightningcss-light: initial;
  --lightningcss-dark: ;
  color-scheme: light;
}

.page {
  height: 100vh;
  position: relative;
}

.app-menu-root {
  z-index: 1100;
  flex-direction: column;
  align-items: flex-start;
  gap: .5rem;
  display: flex;
  position: fixed;
  top: 1rem;
  left: 1rem;
}

.visible-tracks-dots {
  flex-direction: column;
  align-items: flex-start;
  gap: .3rem;
  display: flex;
}

.visible-tracks-dots__dot {
  cursor: pointer;
  border: none;
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  padding: 0;
  display: flex;
}

.visible-tracks-dots__dot:disabled {
  cursor: default;
}

.visible-tracks-dots__check {
  color: #000;
  font-size: .75rem;
  font-weight: 700;
  line-height: 1;
}

.visible-tracks-dots__overflow {
  background: var(--background);
  width: 24px;
  height: 24px;
  color: var(--foreground);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  font-size: .65rem;
  font-weight: 600;
  display: flex;
}

.marker-group-dots {
  flex-direction: column;
  align-items: flex-start;
  gap: .3rem;
  display: flex;
}

.marker-group-dots__dot {
  cursor: pointer;
  border: none;
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  padding: 0;
  font-size: .85rem;
  line-height: 1;
  display: flex;
}

.marker-group-dots__dot--hidden {
  opacity: .35;
}

.app-dropdown-positioner {
  z-index: 1060;
}

.app-dropdown {
  background: var(--background);
  min-width: min(220px, 100vw - 2rem);
  color: var(--foreground);
  padding: .5rem;
  list-style: none;
  box-shadow: 0 4px 20px #0000004d;
}

.app-dropdown-item {
  width: 100%;
  color: inherit;
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  align-items: center;
  gap: .75rem;
  padding: .6rem .5rem;
  font-size: 1rem;
  display: flex;
}

.app-dropdown-item:hover, .app-dropdown-item[data-highlighted] {
  background: #8080801f;
}

.app-dropdown-item__icon {
  text-align: center;
  flex-shrink: 0;
  width: 1.5em;
  font-size: 1.2rem;
}

.app-dropdown-item__label {
  flex: 1;
}

.app-dropdown-item__badge {
  background: #80808033;
  padding: .1rem .55rem;
  font-size: .8rem;
}

.app-dropdown-item__chevron {
  color: #888;
}

.app-submenu-positioner {
  z-index: 1070;
}

.app-submenu {
  background: var(--background);
  width: min(300px, 100vw - 2rem);
  max-height: min(70vh, 480px);
  color: var(--foreground);
  padding: 1rem;
  overflow-y: auto;
  box-shadow: 0 4px 20px #0000004d;
}

.app-dropdown--compact {
  min-width: 0;
  padding: .25rem;
}

.app-submenu--compact {
  width: max-content;
  max-width: calc(100vw - 2rem);
  padding: .25rem;
}

.app-dropdown-item--compact {
  gap: .5rem;
  padding: .3rem .5rem;
  font-size: .875rem;
}

.app-dropdown-item--compact .app-dropdown-item__icon {
  width: 1.25em;
  font-size: 1rem;
}

.app-dropdown-info {
  color: #888;
  align-items: center;
  gap: .5rem;
  padding: .3rem .5rem;
  font-size: .8rem;
  display: flex;
}

.app-dropdown-item__indicator {
  flex-shrink: 0;
  padding-left: .5rem;
}

.map-placeholder {
  color: #666;
  justify-content: center;
  align-items: center;
  display: flex;
}

.tools-panel-placeholder {
  text-align: center;
  color: #666;
  border: 2px dashed #999;
  padding: 2rem 1rem;
}

.leaflet-map, .map-placeholder {
  z-index: 0;
  border-radius: 0;
  width: 100vw;
  height: 100vh;
  position: fixed;
  inset: 0;
}

.map-controls {
  z-index: 1100;
  flex-direction: column;
  align-items: flex-end;
  gap: .5rem;
  display: flex;
  position: fixed;
  top: 1rem;
  right: 1rem;
}

.map-control-button {
  background: var(--background);
  width: 44px;
  height: 44px;
  color: var(--foreground);
  cursor: pointer;
  border: none;
  justify-content: center;
  align-items: center;
  padding: 0;
  font-size: 1.25rem;
  line-height: 1;
  display: flex;
  box-shadow: 0 2px 8px #0000004d;
}

.map-search {
  justify-content: flex-end;
  display: flex;
  position: relative;
}

.map-search__panel {
  background: var(--background);
  width: min(340px, 100vw - 5rem);
  color: var(--foreground);
  padding: .5rem;
  position: absolute;
  top: 0;
  right: calc(44px + .5rem);
  box-shadow: 0 4px 20px #0000004d;
}

.map-search__form {
  gap: .4rem;
  display: flex;
}

.map-search__input {
  background: var(--background);
  min-width: 0;
  color: var(--foreground);
  border: 1px solid #80808080;
  flex: 1;
  padding: .4rem .5rem;
  font-size: .875rem;
}

.map-search__submit {
  color: inherit;
  cursor: pointer;
  background: #80808033;
  border: none;
  padding: .4rem .7rem;
  font-size: .875rem;
}

.map-search__note {
  color: #888;
  padding: .5rem .25rem .1rem;
  font-size: .8rem;
}

.map-search__results {
  max-height: 40vh;
  margin-top: .4rem;
  list-style: none;
  overflow-y: auto;
}

.map-search__result {
  width: 100%;
  color: inherit;
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  padding: .4rem .5rem;
  font-size: .8rem;
}

.map-search__result:hover {
  background: #8080801f;
}

.theme-toggle__icon--to-light {
  display: none;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .theme-toggle__icon--to-dark {
    display: none;
  }

  :root:not([data-theme="light"]) .theme-toggle__icon--to-light {
    display: block;
  }
}

:root[data-theme="dark"] .theme-toggle__icon--to-dark {
  display: none;
}

:root[data-theme="dark"] .theme-toggle__icon--to-light, :root[data-theme="light"] .theme-toggle__icon--to-dark {
  display: block;
}

:root[data-theme="light"] .theme-toggle__icon--to-light {
  display: none;
}

.app-menu-toggle {
  background: var(--background);
  width: 44px;
  height: 44px;
  color: var(--foreground);
  cursor: pointer;
  border: none;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
  box-shadow: 0 2px 8px #0000004d;
}

.app-menu-toggle__icon, .app-menu-toggle__icon:before, .app-menu-toggle__icon:after {
  background: currentColor;
  width: 20px;
  height: 2px;
  display: block;
}

.app-menu-toggle__icon {
  position: relative;
}

.app-menu-toggle__icon:before, .app-menu-toggle__icon:after {
  content: "";
  position: absolute;
  left: 0;
}

.app-menu-toggle__icon:before {
  top: -6px;
}

.app-menu-toggle__icon:after {
  top: 6px;
}

.quick-actions {
  z-index: 1100;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  display: none;
  position: fixed;
  top: 32rem;
  left: 1rem;
}

@media (max-width: 768px) {
  .quick-actions {
    display: flex;
  }
}

.quick-actions__button {
  background: var(--background);
  width: 44px;
  height: 44px;
  color: var(--foreground);
  cursor: pointer;
  border: none;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  line-height: 1;
  display: flex;
  box-shadow: 0 2px 8px #0000004d;
}

.quick-actions__button:disabled {
  opacity: .6;
  cursor: not-allowed;
}

.quick-actions__locate--active {
  color: #4285f4;
}

.quick-actions__rec, .quick-actions__stop {
  color: #e6194b;
}

.quick-actions__error {
  background: var(--background);
  color: #b00020;
  text-align: center;
  max-width: min(220px, 100vw - 5rem);
  padding: .35rem .6rem;
  font-size: .8rem;
  box-shadow: 0 2px 8px #0000004d;
}

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

.file-upload__dropzone {
  text-align: center;
  cursor: pointer;
  border: 2px dashed #999;
  padding: 2rem 1rem;
  position: relative;
}

.file-upload__dropzone--active {
  background: #4363d814;
  border-color: #4363d8;
}

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

.file-upload__error {
  color: #b00020;
  margin-top: .75rem;
}

.file-upload__errors {
  color: #b00020;
  margin-top: .75rem;
  padding-left: 1.25rem;
}

.file-list {
  flex-direction: column;
  gap: .5rem;
  list-style: none;
  display: flex;
}

.file-list__empty {
  color: #666;
}

.file-list-item {
  border: 1px solid #ddd;
  padding: .35rem .5rem;
}

.file-list-item__row {
  align-items: center;
  gap: .4rem;
  display: flex;
}

.file-list-item__swatch {
  cursor: pointer;
  border: none;
  border-radius: 0;
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  padding: 0;
}

.file-list-item__swatch::-webkit-color-swatch-wrapper {
  padding: 0;
}

.file-list-item__swatch::-webkit-color-swatch {
  border: none;
  border-radius: 0;
}

.file-list-item__swatch::-moz-color-swatch {
  border: none;
  border-radius: 0;
}

.file-list-item__name {
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: left;
  cursor: pointer;
  min-width: 0;
  color: inherit;
  background: none;
  border: none;
  flex: 1;
  padding: 0;
  font-size: .9rem;
  overflow: hidden;
}

.file-list-item__meta {
  color: #666;
  flex-direction: column;
  gap: .15rem;
  margin-bottom: .5rem;
  padding-left: 1rem;
  font-size: .85rem;
  display: flex;
}

.file-list-item__download {
  width: 24px;
  height: 24px;
  color: inherit;
  border: 1px solid #ccc;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  font-size: .85rem;
  line-height: 1;
  text-decoration: none;
  display: flex;
}

.file-list-item__remove {
  color: #b00020;
  cursor: pointer;
  background: none;
  border: 1px solid #b00020;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  font-size: .85rem;
  line-height: 1;
  display: flex;
}

.file-list-item__remove:disabled {
  opacity: .6;
  cursor: not-allowed;
}

.file-list-item__error {
  color: #b00020;
  margin: .25rem 0 0;
  font-size: .85rem;
}

.file-list-item__stats {
  border-top: 1px solid #eee;
  margin-top: .5rem;
  padding-top: .5rem;
}

.track-menu-list {
  flex-direction: column;
  gap: .15rem;
  display: flex;
}

.track-menu-list__empty {
  color: #666;
}

.track-menu-item {
  cursor: default;
  align-items: center;
  gap: .5rem;
  width: 100%;
  padding: .35rem .5rem;
  display: flex;
}

.track-menu-item[data-highlighted] {
  background: #8080801f;
}

.track-menu-item__dot {
  border: 1px solid #999;
  border-radius: 50%;
  flex-shrink: 0;
  width: 10px;
  height: 10px;
}

.track-menu-item__name {
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
  font-size: .9rem;
  overflow: hidden;
}

.track-menu-item__name--hidden {
  color: #888;
  text-decoration: line-through;
}

.stats-panel {
  grid-template-columns: max-content 1fr;
  gap: .25rem 1rem;
  display: grid;
}

.stats-panel__row {
  display: contents;
}

.stats-panel__row dt {
  color: #666;
}

.stats-panel__row dd {
  margin: 0;
  font-weight: 500;
}

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