body {
  margin: 0 auto;
  padding: 0 1rem 100vh 1rem;
  font-family: "Jost", sans-serif;
  font-size: 20px;
  max-width: 1024px;
}

.location-toggle {
  display: flex;
}
.location-toggle .location-toggle-button {
  padding: 0.5rem 1rem;
  margin-top: -1rem;
  margin-right: 2rem;
  color: #000;
  background-color: #fff;
  text-decoration: none;
  outline: #000 2px solid;
}
.location-toggle .location-toggle-button:hover {
  text-decoration: underline;
}
.location-toggle .location-toggle-button-active {
  color: #fff;
  background-color: #000;
}
.location-toggle .location-toggle-button-active:hover {
  text-decoration: none;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1rem;
}
table tr:not(:last-child) td {
  border-bottom: 1px solid #000;
}
table th {
  text-align: left;
}
table th, table td {
  padding: 0.25rem;
}
table td.line-cell {
  font-weight: 600;
}
table td.count-cell {
  text-align: center;
}

.header {
  padding: 2rem 0;
}
.header h1 {
  padding: 0;
  margin: 0;
}

.setup-container {
  max-width: 720px;
  padding-bottom: 4rem;
}

.setup-title {
  font-size: 1.6rem;
  margin: 2rem 0 0.5rem;
}

.setup-intro {
  color: #444;
  margin: 0 0 2rem;
}

.setup-section {
  margin-bottom: 2.5rem;
}

.setup-section-title {
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 0.75rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid #000;
}

.setup-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.setup-tabs .setup-tab {
  padding: 0.4rem 0.9rem;
  font-family: inherit;
  font-size: 0.9rem;
  cursor: pointer;
  border: 2px solid #000;
  background: #fff;
}
.setup-tabs .setup-tab:hover {
  background: #f0f0f0;
}
.setup-tabs .setup-tab-active {
  background: #000;
  color: #fff;
}
.setup-tabs .setup-tab-active:hover {
  background: #000;
}

.stop-picker {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stop-search {
  font-family: inherit;
  font-size: 0.95rem;
  padding: 0.4rem 0.6rem;
  border: 2px solid #000;
  width: 100%;
  box-sizing: border-box;
}

.stop-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 320px;
  overflow-y: auto;
  border: 1px solid #ccc;
}

.stop-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 0.6rem;
  cursor: pointer;
  border-bottom: 1px solid #eee;
}
.stop-item:last-child {
  border-bottom: none;
}
.stop-item:hover {
  background: #f5f5f5;
}
.stop-item.stop-item-selected {
  background: #f0f7ff;
}
.stop-item.stop-item-selected:hover {
  background: #e4f0ff;
}

.stop-checkbox {
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  pointer-events: none;
  cursor: pointer;
  accent-color: #000;
}

.stop-name {
  flex: 1;
  font-size: 0.95rem;
}

.stop-meta {
  font-size: 0.8rem;
  color: #666;
  white-space: nowrap;
}

.bus-search-row {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.bus-search-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
  min-width: 200px;
}

.bus-search-label {
  font-size: 0.85rem;
  font-weight: 600;
}

.bus-search-input-row {
  display: flex;
  gap: 0.4rem;
}
.bus-search-input-row .stop-search {
  flex: 1;
}

.stop-search-btn {
  font-family: inherit;
  font-size: 0.9rem;
  padding: 0.4rem 0.8rem;
  border: 2px solid #000;
  background: #000;
  color: #fff;
  cursor: pointer;
  white-space: nowrap;
}
.stop-search-btn:hover {
  background: #333;
}
.stop-search-btn:disabled {
  opacity: 0.5;
  cursor: default;
}

.stop-error {
  font-size: 0.85rem;
  color: #c00;
  margin: 0;
}

.setup-result {
  margin-top: 2rem;
  padding: 1rem;
  border: 2px solid #000;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.setup-result-label {
  font-weight: 700;
  margin: 0;
}

.setup-url {
  font-size: 0.8rem;
  word-break: break-all;
  background: #f5f5f5;
  padding: 0.5rem;
  display: block;
}

.setup-result-actions {
  display: flex;
  gap: 0.75rem;
}

.setup-copy-btn, .setup-go-btn {
  font-family: inherit;
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
  border: 2px solid #000;
  cursor: pointer;
  text-decoration: none;
}

.setup-copy-btn {
  background: #000;
  color: #fff;
}
.setup-copy-btn:hover {
  background: #333;
}

.setup-go-btn {
  background: #fff;
  color: #000;
}
.setup-go-btn:hover {
  background: #f0f0f0;
}

.setup-empty {
  color: #666;
  font-style: italic;
}

.stop-map-link {
  font-size: 0.75rem;
  color: #0060c0;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}
.stop-map-link:hover {
  text-decoration: underline;
}

.stop-hint {
  font-size: 0.8rem;
  color: #555;
  margin: 0;
}
.stop-hint a {
  color: #0060c0;
}

.stop-section {
  margin-bottom: 1.5rem;
}

.stop-section-name {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #555;
  margin: 0 0 0.25rem;
}

.setup-tip {
  font-size: 0.75rem;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

.dashboard-setup-link {
  margin-top: 2rem;
}

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