/* Journey note panel under selector */
.journey-note {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 auto 22px auto;
  max-width: 700px;
  font-size: 1.18em;
  color: #17406a;
  background: linear-gradient(90deg, #eaf6ff 80%, #d0eaff 100%);
  border-radius: 11px;
  border: 2.5px solid #36a2c8;
  padding: 20px 28px;
  box-shadow: 0 4px 18px rgba(36,162,200,0.13);
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: box-shadow 0.2s;
}
.journey-note .note-icon {
  font-size: 2em;
  margin-right: 6px;
  color: #1d72b8;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 4px #36a2c855);
}
@media (max-width: 700px) {
  .journey-note {
    font-size: 1.05em;
    padding: 12px 8px;
    max-width: 99vw;
    border-radius: 0.7em;
    gap: 10px;
  }
  .journey-note .note-icon {
    font-size: 1.3em;
    margin-right: 2px;
  }
}
body {
  font-family: Arial, sans-serif;
  background: #f8f9fa;
  margin: 0; padding: 0;
  min-height: 100vh;
}
.container {
  max-width: 900px;
  margin: 32px auto 24px auto;
  background: #fff;
  padding: 0;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}
.header {
  background: linear-gradient(90deg, #eaf6ff 0%, #f7fbff 100%);
  border-bottom: 1.5px solid #e3e8ee;
  border-radius: 12px 12px 0 0;
  padding: 32px 24px 18px 24px;
  text-align: center;
  position: relative;
}
.header h1 {
  font-size: 2.2em;
  font-weight: 700;
  color: #1a3a5c;
  margin-bottom: 0.5em;
  letter-spacing: 0.5px;
}
.header .ghost-toolkit {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f7fbff;
  border-radius: 6px;
  border: 1px solid #e3e8ee;
  padding: 10px 18px;
  margin-bottom: 10px;
  font-size: 1.08em;
  color: #1a3a5c;
  font-weight: 500;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  gap: 10px;
}
.header .ghost-toolkit .ghost-icon {
  font-size: 1.5em;
  margin-right: 4px;
  vertical-align: middle;
  display: inline-block;
}
.header .note, .header .contribute {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 14px auto 0 auto;
  max-width: 600px;
  font-size: 1.07em;
  color: #2a3b4c;
  background: #f7fbff;
  border-radius: 6px;
  border: 1px solid #e3e8ee;
  padding: 12px 18px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.03);
  transition: box-shadow 0.2s;
}
.header .note:hover, .header .contribute:hover {
  box-shadow: 0 2px 12px rgba(36,162,200,0.08);
}
.header .note {
  margin-top: 18px;
  font-weight: 500;
  color: #1a3a5c;
  background: #eaf6ff;
}
.header .note .note-icon {
  font-size: 1.3em;
  margin-right: 2px;
  color: #36a2c8;
  flex-shrink: 0;
}
.header .contribute {
  margin-top: 10px;
  background: #f7fbff;
}
.header .contribute .contribute-icon {
  font-size: 1.3em;
  margin-right: 2px;
  color: #a34fc8;
  flex-shrink: 0;
}
.main-content {
  padding: 18px 12px 12px 12px;
}
.panel {
  background: #f7fbff;
  border-radius: 8px;
  padding: 14px 16px;
  margin-bottom: 16px;
  border: 1px solid #e3e8ee;
}
.journey-count { color: #555; font-size: 1em; margin-bottom: 1em; }
.region-table-wrapper { overflow-x: auto; }
.region-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2em;
  min-width: 400px;
  border-radius: 8px;
  overflow: hidden;
  background: #f9fbfd;
}
.region-table th, .region-table td {
  border: 1px solid #e3e8ee;
  padding: 8px 12px;
  text-align: left;
  font-size: 1em;
}
.region-table th {
  background: #eaf6ff;
  font-weight: 600;
  color: #1a3a5c;
}
.region-table tr:nth-child(even) {
  background: #f3f7fa;
}
.region-table tr:hover {
  background: #e0f0ff;
}
.region-title {
  margin-top: 1.5em;
  font-size: 1.08em;
  color: #2a3b4c;
  font-weight: 500;
}
.nav {
  margin-bottom: 2em;
  text-align: center;
}
.nav label {
  font-size: 1em;
  color: #1a3a5c;
  font-weight: 500;
  margin-right: 8px;
  vertical-align: middle;
}
.nav select {
  font-size: 1em;
  padding: 0.4em 1.2em;
  border-radius: 6px;
  border: 1px solid #c3d6e6;
  background: #f7fbff;
  color: #1a3a5c;
  font-weight: 500;
  outline: none;
  transition: border 0.2s;
}
.nav select:focus {
  border: 1.5px solid #1a3a5c;
}
@media (max-width: 700px) {
  .container {
    max-width: 99vw;
    margin: 8px auto;
    padding: 0;
    border-radius: 0;
  }
  .header {
    padding: 18px 4vw 10px 4vw;
    border-radius: 0;
  }
  .header h1 { font-size: 1.15em; }
  .header .ghost-toolkit, .header .note, .header .contribute {
    font-size: 0.98em;
    padding: 8px 8px;
    max-width: 99vw;
  }
  .main-content { padding: 8px 2vw 2vw 2vw; }
  h2 { font-size: 1em; }
  .region-title { font-size: 0.98em; }
  .region-table th, .region-table td { padding: 5px 6px; font-size: 0.95em; }
  .nav label { font-size: 0.98em; }
  .nav select { font-size: 0.98em; padding: 0.2em 0.7em; }
  .panel { padding: 10px 6px; font-size: 0.97em; }
}
