:root {
  --bg: #0b1220;
  --bg-soft: #111a2e;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-strong: rgba(255, 255, 255, 0.88);
  --text: #111827;
  --text-soft: #4b5563;
  --primary: #2563eb;
  --primary-2: #7c3aed;
  --success: #059669;
  --border: rgba(148, 163, 184, 0.35);
  --shadow: 0 12px 32px rgba(15, 23, 42, 0.16);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  line-height: 1.5;
  background:
    radial-gradient(1200px 600px at -10% -10%, rgba(37, 99, 235, 0.35), transparent 60%),
    radial-gradient(1000px 500px at 110% 0%, rgba(124, 58, 237, 0.28), transparent 55%),
    linear-gradient(160deg, var(--bg) 0%, var(--bg-soft) 100%);
  min-height: 100vh;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.site-header {
  padding: 2.8rem 0 1.9rem;
}

.site-header h1 {
  margin: 0;
  font-size: clamp(1.55rem, 2.8vw, 2.15rem);
  color: #f8fafc;
  letter-spacing: 0.01em;
}

.site-header p {
  margin: 0.65rem 0 0;
  color: rgba(241, 245, 249, 0.82);
  max-width: 760px;
}

.session-box {
  min-width: 230px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  padding: 0.85rem 0.95rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(15, 23, 42, 0.26);
  color: #f8fafc;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.session-box-copy {
  display: flex;
  flex-direction: column;
}

.session-label {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(191, 219, 254, 0.92);
}

.session-box-copy strong {
  margin-top: 0.1rem;
}

.session-box-copy small {
  margin-top: 0.12rem;
  color: rgba(226, 232, 240, 0.84);
}

.session-logout-button {
  flex-shrink: 0;
}

.search-panel,
.map-card,
.list-card {
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.search-panel {
  margin-top: 1.4rem;
  padding: 1.1rem;
}

.search-panel h2 {
  margin: 0 0 0.65rem;
  font-size: 1.05rem;
}

.search-form {
  display: grid;
  grid-template-columns: 1.7fr 1fr auto;
  gap: 0.8rem;
  align-items: end;
}

.category-filter-group {
  grid-column: 1 / -1;
}

.category-filter-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.9rem;
}

.category-filter-label {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #1f2937;
}

.category-filter-description {
  margin: 0.22rem 0 0;
  color: #64748b;
  font-size: 0.84rem;
}

.category-filter-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.category-action-button {
  padding: 0.58rem 0.78rem;
  font-size: 0.82rem;
  white-space: nowrap;
}

.category-filter-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.7rem;
}

.category-filter-chip {
  position: relative;
  display: inline-flex;
}

.category-filter-chip input {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}

.category-filter-chip span {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  padding: 0.56rem 0.82rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.34);
  background: rgba(255, 255, 255, 0.94);
  color: #334155;
  font-size: 0.86rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s, box-shadow 0.2s;
}

.category-filter-chip span::before {
  content: "";
  width: 0.56rem;
  height: 0.56rem;
  border-radius: 999px;
  background: #cbd5e1;
  transition: background 0.2s, transform 0.2s;
}

.category-filter-chip input:checked + span {
  border-color: rgba(37, 99, 235, 0.34);
  background: rgba(37, 99, 235, 0.12);
  color: #1d4ed8;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.08);
}

.category-filter-chip input:checked + span::before {
  background: #2563eb;
  transform: scale(1.1);
}

.category-filter-chip input:focus-visible + span {
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.16);
}

.category-filter-note {
  margin: 0.62rem 0 0;
  color: #475569;
  font-size: 0.85rem;
}

.category-filter-note[data-tone="warning"] {
  color: #b45309;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1f2937;
}

input,
select,
button {
  border-radius: 12px;
  padding: 0.75rem 0.82rem;
  font: inherit;
}

input,
select {
  border: 1px solid rgba(148, 163, 184, 0.45);
  background: rgba(255, 255, 255, 0.88);
  transition: border-color 0.2s, box-shadow 0.2s;
}

input:focus,
select:focus {
  outline: none;
  border-color: rgba(37, 99, 235, 0.7);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.16);
}

button {
  border: none;
  color: white;
  cursor: pointer;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%);
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.3);
  transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
}

button:hover {
  transform: translateY(-1px);
  filter: saturate(1.05);
  box-shadow: 0 14px 30px rgba(76, 29, 149, 0.32);
}

button:active {
  transform: translateY(0);
}

.secondary-button {
  background: rgba(255, 255, 255, 0.92);
  color: var(--primary);
  border: 1px solid rgba(37, 99, 235, 0.22);
  box-shadow: none;
}

.secondary-button:hover {
  box-shadow: none;
  filter: none;
}

.secondary-button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.auth-screen {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 1.2rem;
  background: rgba(2, 6, 23, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.auth-screen[hidden] {
  display: none;
}

.auth-card {
  width: min(100%, 460px);
  padding: 1.3rem;
  border-radius: 20px;
  border: 1px solid rgba(148, 163, 184, 0.24);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.22);
}

.auth-card h2 {
  margin: 0;
  font-size: 1.26rem;
}

.auth-description {
  margin: 0.6rem 0 0;
  color: #475569;
  font-size: 0.92rem;
}

.auth-form {
  margin-top: 1rem;
  display: grid;
  gap: 0.82rem;
}

.auth-status-message {
  margin: 0.95rem 0 0;
  font-size: 0.9rem;
  color: #334155;
}

.auth-status-message[data-tone="success"] {
  color: #047857;
}

.auth-status-message[data-tone="error"] {
  color: #b91c1c;
}

.auth-status-message[data-tone="warning"] {
  color: #b45309;
}

.auth-status-message[data-tone="info"] {
  color: #1d4ed8;
}

.status-message {
  margin: 0.9rem 0 0;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.helper-message {
  margin: 0.35rem 0 0;
  color: #1e3a8a;
  font-size: 0.88rem;
}

.usage-panel {
  margin-top: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.3);
  border-radius: 16px;
  padding: 0.88rem 0.95rem;
  background: rgba(255, 255, 255, 0.76);
}

.usage-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.usage-panel-header h3 {
  margin: 0;
  font-size: 0.96rem;
}

.usage-panel-status,
.usage-empty-state {
  margin: 0.58rem 0 0;
  color: #475569;
  font-size: 0.88rem;
}

.usage-summary-list {
  margin: 0.75rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.58rem;
}

.usage-summary-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.85rem;
  padding: 0.72rem 0.78rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(148, 163, 184, 0.24);
}

.usage-summary-main {
  display: flex;
  flex-direction: column;
}

.usage-summary-main strong {
  font-size: 0.92rem;
}

.usage-summary-main span,
.usage-summary-side span {
  margin-top: 0.12rem;
  font-size: 0.83rem;
  color: #475569;
}

.usage-summary-side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}

.usage-summary-side small {
  margin-top: 0.12rem;
  color: #64748b;
}

.admin-panel {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.admin-panel-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.admin-panel-header h2 {
  margin: 0;
  font-size: 1.08rem;
}

.admin-panel-status {
  margin: 0.38rem 0 0;
  color: #475569;
  font-size: 0.9rem;
}

.admin-summary-grid {
  margin-top: 0.95rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.admin-summary-card {
  padding: 0.82rem 0.9rem;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.24);
  background: rgba(255, 255, 255, 0.92);
}

.admin-summary-card span {
  display: block;
  font-size: 0.78rem;
  color: #64748b;
}

.admin-summary-card strong {
  display: block;
  margin-top: 0.3rem;
  font-size: 1.04rem;
}

.admin-panel-layout {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(420px, 1.05fr);
  gap: 1rem;
}

.admin-card {
  padding: 0.95rem;
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  background: rgba(255, 255, 255, 0.82);
}

.admin-card-full {
  margin-top: 1rem;
}

.admin-card h3 {
  margin: 0;
  font-size: 0.98rem;
}

.admin-section-note {
  margin: 0.45rem 0 0;
  color: #64748b;
  font-size: 0.87rem;
}

.admin-form {
  margin-top: 0.9rem;
}

.admin-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.admin-form-grid-span {
  grid-column: 1 / -1;
}

.admin-checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.85rem;
}

.admin-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #1f2937;
  font-size: 0.9rem;
}

.admin-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}

.admin-form-status {
  margin: 0.85rem 0 0;
  color: #334155;
  font-size: 0.88rem;
}

.admin-form-status[data-tone="success"] {
  color: #047857;
}

.admin-form-status[data-tone="error"] {
  color: #b91c1c;
}

.admin-form-status[data-tone="warning"] {
  color: #b45309;
}

.admin-form-status[data-tone="info"] {
  color: #1d4ed8;
}

.admin-table-wrap {
  margin-top: 0.9rem;
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 860px;
}

.admin-table th,
.admin-table td {
  padding: 0.7rem 0.66rem;
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
  text-align: left;
  vertical-align: top;
  font-size: 0.84rem;
}

.admin-table th {
  font-size: 0.77rem;
  font-weight: 700;
  color: #475569;
  background: rgba(248, 250, 252, 0.92);
  position: sticky;
  top: 0;
}

.admin-price-input,
.admin-price-text-input {
  width: 100%;
  min-width: 120px;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.36);
  padding: 0.55rem 0.62rem;
  font: inherit;
  background: rgba(255, 255, 255, 0.94);
}

.admin-account-primary {
  display: flex;
  flex-direction: column;
}

.admin-account-primary small {
  margin-top: 0.12rem;
  color: #64748b;
}

.admin-role-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.22rem 0.58rem;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
}

.admin-role-admin {
  background: rgba(124, 58, 237, 0.14);
  color: #6d28d9;
}

.admin-role-user {
  background: rgba(37, 99, 235, 0.12);
  color: #1d4ed8;
}

.admin-breakdown-details summary {
  cursor: pointer;
  color: var(--primary);
  font-weight: 700;
}

.admin-breakdown-list {
  margin: 0.55rem 0 0;
  padding-left: 1rem;
  color: #334155;
}

.admin-breakdown-list li + li {
  margin-top: 0.45rem;
}

.admin-empty-state {
  margin: 0.75rem 0 0;
  color: #64748b;
  font-size: 0.88rem;
}

.admin-switch-label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.result-layout {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding-bottom: 2.2rem;
}

.map-card,
.list-card {
  padding: 1rem;
}

.map-card h2,
.list-card h2 {
  margin: 0 0 0.8rem;
  font-size: 1.06rem;
  color: #111827;
}

.result-panel-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.9rem;
  margin-bottom: 0.8rem;
}

.result-panel-header h2 {
  margin-bottom: 0;
}

.result-export-note {
  margin: 0.32rem 0 0;
  color: #64748b;
  font-size: 0.84rem;
}

.result-export-note[data-tone="success"] {
  color: #047857;
}

.result-export-note[data-tone="warning"] {
  color: #b45309;
}

.result-export-note[data-tone="error"] {
  color: #b91c1c;
}

.result-action-button {
  flex-shrink: 0;
  white-space: nowrap;
}

.card-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.8rem;
}

.card-heading h2 {
  margin-bottom: 0;
}

.map-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.45rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.32rem 0.68rem;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  white-space: nowrap;
  border: 1px solid transparent;
}

.badge-live {
  background: rgba(5, 150, 105, 0.12);
  color: #047857;
  border-color: rgba(5, 150, 105, 0.24);
}

.badge-fallback {
  background: rgba(245, 158, 11, 0.12);
  color: #b45309;
  border-color: rgba(245, 158, 11, 0.24);
}

.badge-preview {
  background: rgba(99, 102, 241, 0.12);
  color: #4338ca;
  border-color: rgba(99, 102, 241, 0.24);
}

.badge-muted {
  background: rgba(148, 163, 184, 0.18);
  color: #475569;
  border-color: rgba(148, 163, 184, 0.28);
}

.badge-range {
  color: #0f172a;
}

.badge-range-5 {
  background: rgba(16, 185, 129, 0.15);
  border-color: rgba(16, 185, 129, 0.22);
}

.badge-range-10 {
  background: rgba(37, 99, 235, 0.15);
  border-color: rgba(37, 99, 235, 0.22);
}

.badge-range-15 {
  background: rgba(124, 58, 237, 0.16);
  border-color: rgba(124, 58, 237, 0.22);
}

.map-wrapper {
  position: relative;
  width: 100%;
  height: 420px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55);
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.24), transparent 35%),
    linear-gradient(160deg, rgba(15, 23, 42, 0.88), rgba(30, 41, 59, 0.72));
}

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

.map-overlay-message {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1.2rem;
  text-align: center;
  color: #f8fafc;
  font-size: 0.96rem;
  font-weight: 600;
  line-height: 1.6;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.58), rgba(15, 23, 42, 0.82));
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.map-overlay-message[hidden] {
  display: none;
}

.map-caption {
  margin: 0.7rem 0 0;
  color: var(--text-soft);
  font-size: 0.88rem;
}

.map-support-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.92fr) minmax(260px, 1.08fr);
  gap: 0.8rem;
  margin-top: 0.95rem;
}

.map-legend,
.route-panel {
  border: 1px solid rgba(148, 163, 184, 0.33);
  border-radius: 14px;
  padding: 0.82rem 0.92rem;
  background: rgba(255, 255, 255, 0.72);
}

.map-legend h3,
.route-panel h3 {
  margin: 0 0 0.68rem;
  font-size: 0.92rem;
}

.legend-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.48rem;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.62rem;
  font-size: 0.88rem;
  color: #1f2937;
}

.legend-swatch {
  width: 0.95rem;
  height: 0.95rem;
  border-radius: 999px;
  background: var(--legend-color, #2563eb);
  border: 2px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 0 1px rgba(148, 163, 184, 0.42);
  flex-shrink: 0;
}

.legend-label {
  font-weight: 600;
}

.route-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.4rem;
}

.route-panel-header h3 {
  margin-bottom: 0;
}

.route-clear-button {
  padding: 0.5rem 0.8rem;
  font-size: 0.8rem;
}

.route-panel-status {
  margin: 0;
  color: #334155;
  font-size: 0.9rem;
}

.route-panel-details {
  margin: 0.85rem 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.68rem;
}

.route-meta {
  margin: 0;
  padding: 0.68rem 0.72rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(148, 163, 184, 0.28);
}

.route-meta dt {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  color: #64748b;
}

.route-meta dd {
  margin: 0.28rem 0 0;
  font-size: 0.92rem;
  font-weight: 700;
  color: #0f172a;
}

.map-info-card {
  min-width: 220px;
  max-width: 280px;
}

.map-info-title {
  display: block;
  font-size: 0.95rem;
}

.map-info-meta,
.map-info-vicinity {
  margin: 0.36rem 0 0;
  font-size: 0.84rem;
  color: #475569;
}

.map-info-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.72rem;
}

.info-action-button {
  padding: 0.54rem 0.72rem;
  font-size: 0.8rem;
}

.text-link-button {
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
}

.text-link-button:hover {
  text-decoration: underline;
}

.result-summary {
  margin-bottom: 0.8rem;
  font-size: 0.93rem;
  padding: 0.78rem;
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(124, 58, 237, 0.06));
}

.summary-note {
  display: block;
  margin-top: 0.45rem;
  font-size: 0.84rem;
  color: var(--text-soft);
}

.facility-list-container {
  display: grid;
  gap: 0.8rem;
}

.category-block {
  border: 1px solid rgba(148, 163, 184, 0.33);
  border-radius: 12px;
  padding: 0.25rem 0.66rem 0.66rem;
  background: var(--surface-strong);
}

.category-summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  cursor: pointer;
  padding: 0.48rem 0;
  font-size: 0.98rem;
  font-weight: 700;
}

.category-summary::-webkit-details-marker {
  display: none;
}

.category-title {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.category-title::before {
  content: "▸";
  color: var(--primary);
  font-size: 0.9rem;
  transition: transform 0.18s ease;
}

.category-block[open] .category-title::before {
  transform: rotate(90deg);
}

.count {
  font-size: 0.82rem;
  font-weight: 700;
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  padding: 0.18rem 0.5rem;
  border-radius: 999px;
}

.facility-list {
  margin: 0.2rem 0 0;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

.facility-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.62rem;
  border: 1px solid rgba(203, 213, 225, 0.65);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
}

.facility-main {
  display: flex;
  flex-direction: column;
}

.facility-main strong {
  font-size: 0.95rem;
}

.facility-main span {
  font-size: 0.84rem;
  color: var(--text-soft);
}

.facility-main small {
  margin-top: 0.14rem;
  font-size: 0.8rem;
  color: #64748b;
}

.facility-item a {
  flex-shrink: 0;
  color: var(--primary);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  align-self: center;
}

.facility-item a:hover {
  text-decoration: underline;
}

.empty-note {
  margin: 0.2rem 0 0;
  color: var(--text-soft);
  font-size: 0.88rem;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1.15rem 0 1.6rem;
  color: rgba(241, 245, 249, 0.8);
  font-size: 0.84rem;
}

@media (max-width: 900px) {
  .site-header-content {
    flex-direction: column;
  }

  .session-box {
    width: 100%;
  }

  .search-form {
    grid-template-columns: 1fr;
  }

  .category-filter-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .result-layout {
    grid-template-columns: 1fr;
  }

  .result-panel-header {
    flex-direction: column;
    align-items: flex-start;
  }

   .card-heading {
    flex-direction: column;
  }

  .map-badges {
    justify-content: flex-start;
  }

  .map-support-grid {
    grid-template-columns: 1fr;
  }

  .map-wrapper {
    height: 320px;
  }

  .facility-item {
    flex-direction: column;
  }

  .usage-summary-item {
    flex-direction: column;
  }

  .usage-summary-side {
    align-items: flex-start;
    text-align: left;
  }

  .admin-panel-header,
  .admin-form-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .admin-summary-grid,
  .admin-form-grid,
  .admin-panel-layout {
    grid-template-columns: 1fr;
  }

  .facility-item a {
    align-self: flex-start;
  }

  .route-panel-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .route-panel-details {
    grid-template-columns: 1fr;
  }
}
