:root {
  --bg: #f4efe6;
  --surface: #fffdf8;
  --ink: #173a3f;
  --muted: #4f6367;
  --accent: #c84c09;
  --line: #d9cbb8;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  color: var(--ink);
  background: radial-gradient(circle at 20% 20%, #f7ddaa 0, transparent 45%),
    radial-gradient(circle at 85% 10%, #d9f2ea 0, transparent 38%), var(--bg);
  margin: 0;
  font-family: Trebuchet MS, Segoe UI, sans-serif;
}

.topbar {
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, #fff6df, #f2fff8);
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: .5rem 1rem;
  padding: 1rem 1.25rem;
  display: grid;
}

.topbar h1 {
  margin: 0;
  font-size: 1.5rem;
}

.topbar p {
  color: var(--muted);
  grid-column: 1;
  margin: .25rem 0 0;
}

#logout-button {
  grid-area: 1 / 2 / span 2;
  align-self: center;
}

.layout {
  grid-template-columns: minmax(270px, 360px) 1fr;
  gap: 1rem;
  padding: 1rem;
  display: grid;
}

.panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  align-content: start;
  gap: 1rem;
  padding: 1rem;
  display: grid;
}

.panel h2 {
  margin: 0 0 .5rem;
  font-size: 1rem;
}

.panel p {
  color: var(--muted);
  margin: 0 0 .5rem;
  font-size: .95rem;
}

label {
  gap: .35rem;
  margin-bottom: .5rem;
  font-size: .9rem;
  font-weight: 600;
  display: grid;
}

input, textarea, button {
  font: inherit;
}

input, textarea {
  background: #fffcf7;
  border: 1px solid #c7b39a;
  border-radius: 8px;
  width: 100%;
  padding: .55rem;
}

button {
  color: #fff;
  cursor: pointer;
  background: #da6a2f;
  border: 1px solid #9f623f;
  border-radius: 8px;
  padding: .55rem .75rem;
}

button:hover {
  filter: brightness(1.05);
}

button.secondary {
  color: #5a3b28;
  background: #fff;
}

.row {
  grid-template-columns: 1fr 1fr;
  gap: .5rem;
  margin-bottom: .5rem;
  display: grid;
}

.line-filter-list {
  border: 1px solid var(--line);
  background: #fffdf8;
  border-radius: 8px;
  max-height: 220px;
  padding: .5rem;
  overflow: auto;
}

.line-filter-list label {
  align-items: center;
  gap: .5rem;
  margin-bottom: .35rem;
  font-weight: 500;
  display: flex;
}

.line-filter-list input[type="checkbox"] {
  width: 16px;
  height: 16px;
}

#status-text {
  border: 1px dashed var(--line);
  background: #fffcf6;
  border-radius: 8px;
  margin: 0;
  padding: .6rem;
}

.map-wrap {
  min-height: 75vh;
  position: relative;
}

#map {
  border: 1px solid var(--line);
  border-radius: 12px;
  width: 100%;
  height: 100%;
  min-height: 75vh;
  overflow: hidden;
}

.hidden {
  display: none !important;
}

.empty-state {
  text-align: center;
  background: #fffdf8e6;
  border-radius: 12px;
  place-content: center;
  gap: .75rem;
  padding: 1.25rem;
  display: grid;
  position: absolute;
  inset: 0;
}

.empty-state p {
  color: var(--muted);
  margin: 0;
  font-size: 1rem;
}

.auth-screen {
  place-items: center;
  min-height: 100vh;
  padding: 1.25rem;
  display: grid;
}

.auth-card {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 14px;
  width: min(420px, 100%);
  padding: 1.25rem;
  box-shadow: 0 8px 28px #173a3f1a;
}

.auth-card h1 {
  margin: 0;
}

.auth-card p {
  color: var(--muted);
}

.auth-error {
  color: #b91c1c;
  margin: .5rem 0 0;
  font-size: .95rem;
}

@media (width <= 900px) {
  .layout {
    grid-template-columns: 1fr;
  }

  .map-wrap, #map {
    min-height: 60vh;
  }
}
/*# sourceMappingURL=frontend.1303bb05.css.map */
