:root {
  --bg: #030712; /* Sleeker dark space background */
  --panel: rgba(17, 24, 39, 0.75); /* Translucent glass panel */
  --panel-2: rgba(10, 15, 30, 0.7);
  --panel-hover: rgba(31, 41, 55, 0.8);
  --line: rgba(255, 255, 255, 0.08); /* Fine divider border */
  --ink: #f3f4f6; /* Premium clean text color */
  --muted: #9ca3af; /* Gray-400 */
  --accent: #60a5fa; /* Modern blue-400 */
  --accent-dim: rgba(59, 130, 246, 0.15); /* Sleeker dim blue */
  --accent-glow: rgba(96, 165, 250, 0.25);
  --night: #030712;
  --twi: #0b1528;
  --glass-border: 1px solid rgba(255, 255, 255, 0.08);
  --glass-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.4);
  --card-radius: 16px;
  font-size: 15px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background:
    radial-gradient(circle at 80% -20%, rgba(96, 165, 250, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 10% 40%, rgba(139, 92, 246, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 50% 80%, rgba(59, 130, 246, 0.04) 0%, transparent 50%),
    var(--bg);
  color: var(--ink);
  font-family: 'Plus Jakarta Sans', ui-sans-serif, system-ui, -apple-system, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Custom Scrollbars */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  border: 2px solid transparent;
  background-clip: padding-box;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.25);
  border: 2px solid transparent;
  background-clip: padding-box;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border-bottom: var(--line);
  position: sticky;
  top: 0;
  background: rgba(3, 7, 18, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 20;
}

.title h1 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
}
.title h1 svg {
  color: var(--accent);
  flex-shrink: 0;
}
.actions { display: flex; align-items: center; gap: 14px; }

button {
  background: var(--accent-dim);
  color: var(--ink);
  border: var(--glass-border);
  border-radius: 10px;
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 550;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
button svg {
  width: 14px;
  height: 14px;
  stroke-width: 2.25px;
}
button:hover { 
  background: var(--accent); 
  color: #030712; 
  transform: translateY(-1px);
  box-shadow: 0 4px 15px var(--accent-glow);
}
button:active {
  transform: translateY(0);
}
button.active {
  background: var(--accent);
  color: #030712;
  box-shadow: 0 0 0 1px var(--accent), 0 4px 15px var(--accent-glow);
}

/* Location picker */
.locpicker { 
  position: relative; 
  display: flex;
  align-items: center;
}
.locpicker .search-icon {
  position: absolute;
  left: 12px;
  color: var(--muted);
  width: 14px;
  height: 14px;
  pointer-events: none;
}
#locSearch {
  background: var(--panel-2); 
  color: var(--ink);
  border: 1px solid var(--line); 
  border-radius: 10px;
  padding: 8px 12px 8px 36px; 
  font-size: 0.85rem; 
  width: 200px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
#locSearch:focus { 
  outline: none; 
  border-color: var(--accent); 
  width: 260px;
  box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.15);
}
.loc-results {
  position: absolute; 
  top: calc(100% + 8px); 
  left: 0; 
  right: 0; 
  z-index: 30;
  background: rgba(3, 7, 18, 0.9); 
  border: 1px solid rgba(255, 255, 255, 0.08); 
  border-radius: 12px;
  max-height: 280px; 
  overflow-y: auto; 
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.5), 0 8px 10px -6px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.04);
  min-width: 320px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 6px;
}
.loc-results .item {
  padding: 10px 14px; 
  font-size: 0.85rem; 
  cursor: pointer;
  border-radius: 8px;
  color: var(--ink-dim);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 2px;
}
.loc-results .item:last-child { margin-bottom: 0; }
.loc-results .item:hover { 
  background: rgba(96, 165, 250, 0.12); 
  color: var(--ink);
  transform: translateX(4px);
}
.loc-results .empty { padding: 12px; color: var(--muted); font-size: 0.85rem; }

/* Nowcast */
.nowcast { 
  border-left: 4px solid var(--accent) !important; 
  background: linear-gradient(135deg, rgba(18, 25, 41, 0.8), rgba(10, 15, 30, 0.65)) !important;
}
.nowcast .nc-head { 
  display: flex; 
  align-items: center; 
  justify-content: space-between;
  flex-wrap: wrap; 
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 12px;
  margin-bottom: 14px;
}
.nowcast .nc-verdict { 
  font-size: 1.15rem; 
  font-weight: 750; 
  letter-spacing: -0.01em;
}
.nowcast .nc-station { 
  color: var(--muted); 
  font-size: 0.82rem; 
}
.nowcast .nc-trend { 
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem; 
  font-weight: 600; 
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  margin-bottom: 16px;
}
.nowcast .nc-trend svg {
  width: 15px;
  height: 15px;
  stroke-width: 2.5px;
}
.nowcast .nc-trend .muted {
  font-weight: 400;
  margin-left: 4px;
}
.nowcast .nc-tier {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 2px 7px;
  border-radius: 5px;
  white-space: nowrap;
}
.nowcast .nc-tier-imaging {
  background: rgba(239, 68, 68, 0.18);
  color: #fca5a5;
}
.nowcast .nc-tier-guiding {
  background: rgba(251, 191, 36, 0.18);
  color: #fcd34d;
}
.nowcast .nc-trend-imaging {
  background: rgba(239, 68, 68, 0.08);
}
.nowcast .nc-trend-guiding {
  background: rgba(251, 191, 36, 0.07);
}

.nowcast .nc-stats { 
  display: grid; 
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); 
  gap: 10px; 
}
.nowcast .nc-stat-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 10px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.nowcast .nc-stat-card svg {
  color: var(--accent);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  stroke-width: 2px;
}
.nowcast .nc-stat-val {
  display: flex;
  flex-direction: column;
}
.nowcast .nc-stat-val span {
  font-size: 0.72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}
.nowcast .nc-stat-val b {
  font-size: 0.98rem;
  color: var(--ink);
  font-weight: 600;
}

.nowcast ul {
  margin: 16px 0 0;
  padding-left: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 12px;
}
.nowcast li {
  font-size: 0.86rem;
  margin-bottom: 6px;
  color: var(--muted);
}

/* Sentinel ring: other nearby BOM stations read independently, not blended. */
.nowcast .nc-ring {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}
.nowcast .nc-ring-label {
  font-size: 0.72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.nowcast .nc-ring-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.nowcast .nc-ring-item {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 5px 10px;
  font-size: 0.78rem;
  color: var(--muted);
}
.nowcast .nc-ring-item.nc-ring-sentinel {
  border-color: rgba(251, 191, 36, 0.35);
  background: rgba(251, 191, 36, 0.06);
  color: #fcd34d;
}
.nowcast .nc-ring-item b {
  color: var(--ink);
  font-weight: 600;
}
.nowcast .nc-ring-item.nc-ring-sentinel b {
  color: #fcd34d;
}
.nowcast .nc-ring-upwind {
  font-size: 0.7rem;
  opacity: 0.8;
}

/* Aurora (space weather) */
.aurora {
  border-left: 4px solid var(--muted) !important;
}
.aurora.aurora-active {
  border-left-color: #a78bfa !important;
  background: linear-gradient(135deg, rgba(45, 27, 71, 0.55), rgba(10, 15, 30, 0.65)) !important;
}
.aurora .aur-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.aurora .aur-verdict {
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.aurora .aur-k {
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
}
.aurora ul {
  margin: 14px 0 0;
  padding-left: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 12px;
}
.aurora li {
  font-size: 0.86rem;
  margin-bottom: 6px;
  color: var(--muted);
}

main { padding: 24px 24px 80px; max-width: 1550px; margin: 0 auto; }

.muted { color: var(--muted); font-size: 0.82rem; }

.card {
  background: var(--panel);
  border: var(--glass-border);
  border-radius: var(--card-radius);
  padding: 18px 20px;
  margin-bottom: 20px;
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

h2 { 
  margin: 0 0 14px; 
  font-size: 1.05rem; 
  font-weight: 700; 
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Status / warnings */
#status .warn {
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.25);
  color: #fcd34d;
  padding: 10px 14px;
  border-radius: 10px;
  margin-bottom: 12px;
  font-size: 0.86rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
#status .warn svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}
#status .err {
  background: rgba(239, 68, 68, 0.1); 
  border: 1px solid rgba(239, 68, 68, 0.25); 
  color: #fca5a5;
  padding: 12px 14px; 
  border-radius: 10px; 
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
#status .err svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

/* Observing windows */
.window-list { 
  display: grid; 
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); 
  gap: 12px; 
}
.window {
  display: flex; 
  flex-direction: column;
  align-items: flex-start; 
  gap: 8px;
  padding: 14px 16px; 
  border-radius: 12px;
  background: var(--panel-2); 
  border: var(--glass-border);
  transition: all 0.2s ease;
}
.window:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}
.window-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  padding-bottom: 6px;
}
.badge {
  font-size: 0.7rem; 
  font-weight: 750; 
  text-transform: uppercase;
  letter-spacing: 0.05em; 
  padding: 3px 8px; 
  border-radius: 6px;
  color: #030712; 
  white-space: nowrap;
}
.badge.Excellent { 
  background: rgba(52, 211, 153, 0.2); 
  color: #34d399; 
  border: 1px solid rgba(52, 211, 153, 0.4);
}
.badge.Good { 
  background: rgba(163, 230, 53, 0.2); 
  color: #a3e635; 
  border: 1px solid rgba(163, 230, 53, 0.4);
}
.badge.Fair { 
  background: rgba(250, 204, 21, 0.2); 
  color: #facc15; 
  border: 1px solid rgba(250, 204, 21, 0.4);
}
.window .night {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
}
.window .night svg { color: var(--accent); }
.window .night-date {
  font-weight: 500;
  font-size: 0.72rem;
  color: var(--muted);
  opacity: 0.7;
  letter-spacing: 0.02em;
}
.window .when {
  font-weight: 550;
  font-size: 0.85rem;
  color: var(--muted);
}
.window .conf-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 650;
  padding: 3px 9px;
  border-radius: 999px;
  border: 1px solid currentColor;
}
.conf-chip.conf-high { color: #34d399; background: rgba(52, 211, 153, 0.1); }
.conf-chip.conf-mid  { color: #facc15; background: rgba(250, 204, 21, 0.1); }
.conf-chip.conf-low  { color: #f87171; background: rgba(248, 113, 113, 0.1); }
.window .meta { 
  color: var(--muted); 
  font-size: 0.8rem; 
  display: flex;
  gap: 8px;
}
.no-windows { 
  color: var(--muted); 
  font-style: italic; 
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
}
.no-windows svg {
  width: 18px;
  height: 18px;
}

/* Grid + detail layout */
.grid-detail { display: grid; grid-template-columns: 1fr 340px; gap: 20px; align-items: start; }
@media (max-width: 1200px) { .grid-detail { grid-template-columns: 1fr; } }

.detail { 
  position: sticky; 
  top: 96px; 
  background: linear-gradient(180deg, rgba(22, 28, 45, 0.8), rgba(15, 23, 42, 0.8)) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
}
.detail h2 {
  color: var(--accent);
}
#detailBody .dt-time { 
  font-size: 1.1rem; 
  font-weight: 700; 
  color: var(--ink); 
  margin-bottom: 4px; 
  display: flex;
  align-items: center;
  gap: 6px;
}
#detailBody .dt-verdict { 
  font-weight: 600; 
  font-size: 0.88rem;
  margin-bottom: 12px; 
  padding: 4px 8px;
  background: rgba(255,255,255,0.03);
  border-radius: 6px;
  display: inline-block;
}
#detailBody ul { 
  margin: 12px 0 0; 
  padding-left: 20px; 
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--ink);
}
#detailBody li { margin-bottom: 5px; }

#detailBody .dt-stats { 
  display: flex; 
  flex-direction: column;
  gap: 10px; 
  margin-top: 16px; 
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

/* Progress-style rows in detail HUD */
.detail-stat-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.detail-stat-label-val {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
}
.detail-stat-label {
  color: var(--muted);
}
.detail-stat-val {
  font-weight: 600;
  color: var(--ink);
}
.detail-progress-bar-bg {
  height: 5px;
  background: rgba(255,255,255,0.08);
  border-radius: 3px;
  overflow: hidden;
}
.detail-progress-bar-fill {
  height: 100%;
  border-radius: 3px;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Night grids */
.night { margin-bottom: 24px; }
.night h3 {
  margin: 0 0 10px; 
  font-size: 0.98rem; 
  font-weight: 650;
  display: flex; 
  gap: 10px; 
  align-items: center;
}
.night h3 svg {
  width: 15px;
  height: 15px;
  color: var(--accent);
}
.night h3 .moon { 
  color: var(--muted); 
  font-weight: 400; 
  font-size: 0.82rem; 
  margin-left: auto;
}
.grid-wrap { 
  overflow-x: auto; 
  border: 1px solid var(--line); 
  border-radius: 12px; 
  background: rgba(10, 15, 30, 0.45);
  box-shadow: inset 0 2px 8px rgba(0,0,0,0.3);
}

table.grid { 
  border-collapse: separate; 
  border-spacing: 0;
  width: 100%; 
  font-size: 0.74rem; 
}
table.grid th, table.grid td {
  text-align: center; 
  padding: 8px 4px; 
  border-right: 1px solid rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.03);
  min-width: 38px; 
  height: 32px;
}
table.grid th.rowlabel, table.grid td.rowlabel {
  text-align: right; 
  padding: 8px 12px; 
  white-space: nowrap;
  position: sticky; 
  left: 0; 
  background: #0b0f19; /* Solid darker dark matching body flow */
  color: var(--muted);
  min-width: 130px; 
  font-weight: 600; 
  z-index: 2;
  border-right: 1px solid var(--line);
}
table.grid thead th { 
  background: var(--panel-2); 
  color: var(--muted); 
  font-weight: 600; 
  height: 32px; 
}
table.grid thead th.hour { font-variant-numeric: tabular-nums; }
table.grid thead th.col-night { color: #93c5fd; }
table.grid td.cell { 
  color: var(--ink); 
  font-variant-numeric: tabular-nums; 
  font-weight: 600; 
}
table.grid td.col-night { box-shadow: inset 0 0 0 99px rgba(0,0,0,0.22); }
table.grid td.col-day { opacity: 0.4; }
table.grid tr.verdict td.cell { 
  font-size: 0.65rem; 
  text-transform: uppercase; 
  letter-spacing: 0.04em; 
  font-weight: 750;
}
table.grid tr:hover td.rowlabel { 
  color: var(--ink) !important; 
  background-color: rgba(255, 255, 255, 0.04) !important;
  box-shadow: inset 3px 0 0 var(--accent);
}
table.grid col.hover { 
  background: rgba(255, 255, 255, 0.04); 
}
table.grid thead th.hour.hover {
  color: var(--ink) !important;
  background-color: rgba(255, 255, 255, 0.04) !important;
  font-weight: 750;
  box-shadow: inset 0 3px 0 var(--accent) !important;
}

.legend { 
  display: flex; 
  flex-wrap: wrap; 
  gap: 12px; 
  font-size: 0.8rem; 
  color: var(--muted); 
}

/* Interactive Legend Filters */
.legend-item {
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 8px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  user-select: none;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.legend-item:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}
.legend-item.active {
  background: var(--accent-dim);
  border-color: var(--accent);
  color: var(--ink);
  box-shadow: 0 0 12px var(--accent-glow);
}

/* Grid Filter Overlay */
table.grid.filter-active td.cell {
  opacity: 0.22 !important;
  filter: saturate(40%) blur(0.5px) !important;
  transition: opacity 0.2s ease, filter 0.2s ease;
}
table.grid.filter-active.filter-good td.cell[data-quality="good"],
table.grid.filter-active.filter-marginal td.cell[data-quality="marginal"],
table.grid.filter-active.filter-poor td.cell[data-quality="poor"],
table.grid.filter-active.filter-dark td.cell.col-night,
table.grid.filter-active.filter-day td.cell.col-day {
  opacity: 1 !important;
  filter: none !important;
}
.legend .swatch { 
  display: inline-block; 
  width: 12px; 
  height: 12px; 
  border-radius: 3px; 
  vertical-align: middle; 
}

footer { 
  margin-top: 20px; 
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
}
footer a { color: var(--accent); text-decoration: none; transition: color 0.15s ease; }
footer a:hover { color: #93c5fd; text-decoration: underline; }

/* Spin Animation */
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.spin {
  animation: spin 1.2s linear infinite;
  display: inline-block;
}

/* Slide and Fade Entrance Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate-fade-in {
  opacity: 0;
  animation: fadeInUp 0.45s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Hour Detail Telemetry Transition */
@keyframes telemetryFade {
  from {
    opacity: 0.35;
    transform: scale(0.995);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Floating Row Tooltips */
.row-tooltip {
  position: fixed;
  z-index: 100;
  background: rgba(3, 7, 18, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 8px 12px;
  color: var(--ink);
  font-size: 0.78rem;
  max-width: 260px;
  line-height: 1.4;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -2px rgba(0, 0, 0, 0.4);
  pointer-events: none;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: opacity 0.15s ease, transform 0.15s ease;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.96);
  text-align: left;
}
.row-tooltip.show {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

/* Current Time Column Highlight */
table.grid td.cell.current {
  background-color: rgba(96, 165, 250, 0.035);
  border-left: 1px dashed rgba(96, 165, 250, 0.2) !important;
  border-right: 1px dashed rgba(96, 165, 250, 0.2) !important;
}
table.grid thead th.hour.current {
  color: var(--accent) !important;
  font-weight: 800;
  background-color: rgba(96, 165, 250, 0.08) !important;
  box-shadow: inset 0 -3px 0 var(--accent) !important;
  border-left: 1px dashed rgba(96, 165, 250, 0.25) !important;
  border-right: 1px dashed rgba(96, 165, 250, 0.25) !important;
}

[hidden] {
  display: none !important;
}

