/* [project]/apps/web/app/globals.css [app-client] (css) */
:root {
  --bg: #f3f6f4;
  --ink: #172524;
  --panel: rgba(255, 255, 255, .94);
  --line: rgba(23, 37, 36, .15);
  --accent: #186f65;
  --accent-2: #dd6e42;
  --danger: #be2f29;
}

* {
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  color: var(--ink);
  background: radial-gradient(circle at 15% 25%, #d9efe9 0, rgba(0, 0, 0, 0) 35%), radial-gradient(circle at 90% 80%, #f8d2bf 0, rgba(0, 0, 0, 0) 28%), linear-gradient(145deg, #eef6f2 0%, #f7f7f5 100%);
  margin: 0;
  padding: 0;
  font-family: Space Grotesk, Segoe UI, system-ui, -apple-system, BlinkMacSystemFont, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
}

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

button, input, select, textarea {
  font: inherit;
}

.page-shell {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.map-canvas {
  width: 100%;
  height: 100%;
}

.dock-shell {
  z-index: 10;
  gap: 8px;
  width: min(360px, 100vw - 24px);
  display: grid;
  position: absolute;
  bottom: 16px;
  right: 16px;
}

.dock-panel {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  max-height: 68vh;
  padding: 14px;
  overflow: auto;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .16);
}

.dock-panel-manage {
  position: relative;
  overflow: visible;
}

.dock-buttons {
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  display: grid;
}

.dock-toggle {
  border: 1px solid var(--line);
  cursor: pointer;
  background: #fff;
  border-radius: 10px;
  min-height: 44px;
}

.dock-toggle[aria-pressed="true"] {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.mode-grid {
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 10px;
  display: grid;
}

.mode-button {
  border: 1px solid var(--line);
  cursor: pointer;
  background: #fff;
  border-radius: 10px;
  min-height: 44px;
}

.mode-button[aria-pressed="true"] {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.panel-title {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 700;
}

.row {
  align-items: stretch;
  gap: 8px;
  display: flex;
}

.row > * {
  flex: 1;
  min-width: 0;
}

.coord-row {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 8px;
  display: grid;
}

.field {
  gap: 6px;
  min-width: 0;
  margin-bottom: 8px;
  display: grid;
}

.field label {
  font-size: 12px;
  font-weight: 600;
}

.field input, .field select, .field textarea {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 8px;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  min-height: 42px;
  padding: 8px 10px;
}

.field input[type="range"] {
  background: none;
  border: none;
  min-height: 28px;
  padding: 0;
}

.field textarea {
  resize: vertical;
  min-height: 80px;
}

.quick-row {
  grid-template-columns: 3fr 1fr;
  align-items: center;
  gap: 8px;
  display: grid;
}

.quick-row > * {
  min-width: 0;
}

.quick-input {
  white-space: nowrap;
  width: 100%;
}

.quick-convert {
  min-height: 42px;
}

.submit {
  background: linear-gradient(120deg, var(--accent), #1b8f82);
  color: #fff;
  cursor: pointer;
  border: none;
  border-radius: 10px;
  width: 100%;
  min-height: 46px;
  font-weight: 700;
}

.status-pill {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 3px 8px;
  font-size: 12px;
  display: inline-block;
}

.legend {
  margin-top: 10px;
  font-size: 12px;
  line-height: 1.4;
}

.error-text {
  color: var(--danger);
  font-size: 12px;
}

.small-note {
  opacity: .8;
  font-size: 12px;
}

.success-toast {
  z-index: 25;
  color: var(--accent);
  pointer-events: none;
  background: rgba(255, 255, 255, .97);
  border: 1px solid rgba(24, 111, 101, .42);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 10px 20px rgba(0, 0, 0, .16);
}

.manage-root {
  position: static;
}

.manage-editor-popup {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: var(--panel);
  border: 1px solid var(--line);
  z-index: 15;
  border-radius: 14px;
  width: 100%;
  padding: 12px;
  position: absolute;
  bottom: 14px;
  left: calc(-100% - 16px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, .2);
}

@media (max-width: 900px) {
  .dock-shell {
    width: auto;
    bottom: 10px;
    left: 10px;
    right: 10px;
  }

  .manage-editor-popup {
    width: auto;
    bottom: calc(100% + 8px);
    left: 0;
    right: 0;
  }
}

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