/* 
 * GeoScanner Pro 9000 - Premium Engineering Dashboard Styles
 * Strictly Static Web Architecture (HTML5 / CSS3 / ES6 JS)
 */

:root {
  --bg-deep: #050811;
  --bg-panel: #0d1424;
  --bg-panel-highlight: #141f36;
  --border-subtle: #1e2d4a;
  --border-bright: #06b6d4;
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-dim: #475569;
  
  --cyan-core: #06b6d4;
  --cyan-glow: rgba(6, 182, 212, 0.35);
  --blue-accent: #3b82f6;
  --emerald-safe: #10b981;
  --amber-warn: #f59e0b;
  --red-alert: #ef4444;
  
  --font-main: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-tech: 'Courier New', Courier, monospace;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

body {
  background-color: var(--bg-deep);
  color: var(--text-primary);
  font-family: var(--font-main);
  line-height: 1.5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(6, 182, 212, 0.08) 0%, transparent 60%),
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 100% 100%, 40px 40px, 40px 40px;
}

/* App Header */
.top-nav {
  background: rgba(13, 20, 36, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-badge {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(6, 182, 212, 0.12);
  border: 1px solid var(--cyan-core);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan-core);
  box-shadow: 0 0 15px var(--cyan-glow);
}

.brand-text h1 {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  background: linear-gradient(135deg, #fff 0%, var(--cyan-core) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-text span {
  font-size: 0.72rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
}

.nav-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-family: var(--font-tech);
  color: var(--emerald-safe);
  background: rgba(16, 185, 129, 0.1);
  padding: 0.35rem 0.75rem;
  border-radius: 99px;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--emerald-safe);
  box-shadow: 0 0 8px var(--emerald-safe);
}

/* Screen View Containers */
.screen {
  display: none;
  flex: 1;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

.screen.active {
  display: flex;
  flex-direction: column;
}

/* 1. Splash Screen */
#splashScreen {
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: calc(100vh - 80px);
}

.splash-content {
  max-width: 650px;
  background: var(--bg-panel);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 3rem 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.splash-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 3px;
  background: var(--cyan-core);
  box-shadow: 0 0 20px var(--cyan-core);
}

.radar-logo {
  width: 110px;
  height: 110px;
  margin: 0 auto 1.5rem;
  position: relative;
  border: 2px solid var(--cyan-core);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 182, 212, 0.05);
  box-shadow: inset 0 0 25px rgba(6, 182, 212, 0.2), 0 0 30px rgba(6, 182, 212, 0.2);
}

.radar-logo svg {
  width: 50px;
  height: 50px;
  color: var(--cyan-core);
}

.splash-title {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: #fff;
}

.splash-subtitle {
  color: var(--cyan-core);
  font-family: var(--font-tech);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.splash-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.sim-disclaimer {
  background: rgba(245, 158, 11, 0.08);
  border: 1px dashed rgba(245, 158, 11, 0.4);
  padding: 0.85rem;
  border-radius: 10px;
  font-size: 0.8rem;
  color: #cbd5e1;
  margin-bottom: 2.5rem;
  text-align: left;
}

.sim-disclaimer strong {
  color: var(--amber-warn);
  display: block;
  margin-bottom: 0.2rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2.2rem;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  border: none;
  outline: none;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.btn-cyan {
  background: linear-gradient(135deg, var(--cyan-core) 0%, #0284c7 100%);
  color: #000;
  box-shadow: 0 0 25px rgba(6, 182, 212, 0.4);
}

.btn-cyan:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(6, 182, 212, 0.6);
  color: #000;
}

.btn-outline {
  background: var(--bg-panel-highlight);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
}

.btn-outline:hover {
  border-color: var(--cyan-core);
  background: #1c2b4b;
}

/* 2. Scanner Screen */
.dashboard-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 1.5rem;
  width: 100%;
}

@media (max-width: 1024px) {
  .dashboard-grid {
    grid-template-columns: 1fr;
  }
}

.panel {
  background: var(--bg-panel);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
}

.panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--border-subtle);
}

.panel-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.panel-title svg {
  color: var(--cyan-core);
}

/* Visualizer Container */
.scanner-viewport {
  background: #03060c;
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  height: 440px;
  position: relative;
  display: flex;
  overflow: hidden;
  box-shadow: inset 0 0 30px rgba(0,0,0,0.8);
}

.depth-column {
  width: 80px;
  background: #090e1a;
  border-right: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 15px 0;
  font-family: var(--font-tech);
  font-size: 0.75rem;
  color: var(--text-secondary);
  user-select: none;
  z-index: 10;
}

.depth-tick {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 10px;
  position: relative;
  width: 100%;
}

.depth-tick::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  width: 6px;
  height: 1px;
  background: var(--text-dim);
}

.depth-tick.target-zone {
  color: var(--amber-warn);
  font-weight: bold;
}

.depth-tick.target-zone::after {
  background: var(--amber-warn);
  width: 12px;
}

.canvas-wrapper {
  flex: 1;
  position: relative;
  height: 100%;
  width: 100%;
}

#subsurfaceCanvas {
  width: 100%;
  height: 100%;
  display: block;
}

/* Active Scan Overlays */
.scan-hud {
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 20;
}

.hud-pill {
  background: rgba(5, 8, 17, 0.85);
  border: 1px solid var(--border-subtle);
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  font-family: var(--font-tech);
  font-size: 0.8rem;
  color: var(--cyan-core);
  backdrop-filter: blur(4px);
}

.probe-beam {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--cyan-core);
  box-shadow: 0 0 15px var(--cyan-core), 0 0 30px var(--cyan-core);
  z-index: 15;
  pointer-events: none;
  transition: top 0.05s linear;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 15px;
}

.probe-beam.anomaly {
  background: var(--red-alert);
  box-shadow: 0 0 20px var(--red-alert), 0 0 40px var(--red-alert);
}

.probe-readout {
  background: #000;
  border: 1px solid var(--cyan-core);
  color: var(--cyan-core);
  font-family: var(--font-tech);
  font-size: 0.8rem;
  font-weight: bold;
  padding: 2px 8px;
  border-radius: 4px;
}

.probe-beam.anomaly .probe-readout {
  border-color: var(--red-alert);
  color: var(--red-alert);
}

/* Progress bar & Radar */
.scan-progress-bar {
  margin-top: 1.25rem;
  background: #090e1a;
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: 0.5rem;
}

.progress-info {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-tech);
  font-size: 0.82rem;
  margin-bottom: 0.4rem;
}

.progress-track {
  height: 10px;
  background: #03060c;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--blue-accent) 0%, var(--cyan-core) 100%);
  box-shadow: 0 0 12px var(--cyan-core);
  transition: width 0.1s linear;
}

/* Console Terminal Panel */
.terminal-console {
  background: #03060c;
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  flex: 1;
  min-height: 260px;
  max-height: 440px;
  padding: 1rem;
  font-family: var(--font-tech);
  font-size: 0.82rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.log-line {
  display: flex;
  gap: 0.65rem;
  line-height: 1.4;
  opacity: 0;
  animation: fadeIn 0.3s forwards;
}

.log-time {
  color: var(--text-dim);
  flex-shrink: 0;
}

.log-msg {
  color: var(--text-primary);
}

.log-msg.info { color: var(--cyan-core); }
.log-msg.warn { color: var(--amber-warn); font-weight: bold; }
.log-msg.alert { color: var(--red-alert); font-weight: bold; }
.log-msg.success { color: var(--emerald-safe); font-weight: bold; }

/* Module Check boxes */
.module-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 1rem;
}

.module-box {
  background: var(--bg-panel-highlight);
  border: 1px solid var(--border-subtle);
  padding: 0.75rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  font-family: var(--font-tech);
}

.module-box span:last-child {
  color: var(--amber-warn);
}

.module-box.ready span:last-child {
  color: var(--emerald-safe);
}

/* 3. Report Screen */
.report-header-banner {
  background: linear-gradient(135deg, rgba(13, 20, 36, 0.9) 0%, rgba(6, 182, 212, 0.15) 100%);
  border: 1px solid var(--cyan-core);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  box-shadow: 0 0 35px rgba(6, 182, 212, 0.15);
}

.report-title-group h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
}

.report-title-group p {
  color: var(--cyan-core);
  font-family: var(--font-tech);
  font-size: 0.9rem;
}

.confidence-widget {
  background: rgba(5, 8, 17, 0.8);
  border: 1px solid var(--border-subtle);
  padding: 1rem 1.5rem;
  border-radius: 12px;
  text-align: center;
}

.confidence-val {
  font-size: 2rem;
  font-weight: 800;
  font-family: var(--font-tech);
  color: var(--emerald-safe);
}

.confidence-label {
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Report Metric Cards */
.report-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}

@media (max-width: 900px) {
  .report-metrics {
    grid-template-columns: repeat(2, 1fr);
  }
}

.stat-card {
  background: var(--bg-panel);
  border: 1px solid var(--border-subtle);
  padding: 1.5rem;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}

.stat-card::top {
  border-top: 3px solid var(--cyan-core);
}

.stat-card.alert { border-color: rgba(239, 68, 68, 0.5); }
.stat-card.water { border-color: rgba(59, 130, 246, 0.5); }

.stat-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stat-value {
  font-size: 1.8rem;
  font-weight: 800;
  font-family: var(--font-tech);
  color: #fff;
  margin-top: 0.35rem;
}

.stat-sub {
  font-size: 0.82rem;
  color: var(--cyan-core);
  margin-top: 0.25rem;
}

/* Two column report body */
.report-body-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .report-body-grid {
    grid-template-columns: 1fr;
  }
}

.rec-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.rec-item {
  background: var(--bg-panel-highlight);
  border: 1px solid var(--border-subtle);
  padding: 1.2rem;
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.rec-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(6, 182, 212, 0.15);
  color: var(--cyan-core);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: bold;
}

.rec-content h4 {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 0.25rem;
}

.rec-content p {
  font-size: 0.88rem;
  color: var(--text-secondary);
}

/* Stratigraphy table */
.strata-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.strata-table th {
  text-align: left;
  padding: 0.75rem 1rem;
  border-bottom: 2px solid var(--border-subtle);
  color: var(--text-secondary);
  font-family: var(--font-tech);
  font-size: 0.8rem;
  text-transform: uppercase;
}

.strata-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--border-subtle);
  color: var(--text-primary);
}

.strata-table tr.highlight-stone {
  background: rgba(239, 68, 68, 0.1);
}

.layer-badge {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-family: var(--font-tech);
  font-weight: bold;
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.82rem;
  color: var(--text-dim);
  background: #03050a;
  margin-top: auto;
}

/* Profile Selector Component */
.profile-nav-selector {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(5, 8, 17, 0.7);
  padding: 0.4rem 0.75rem;
  border-radius: 12px;
  border: 1px solid var(--border-subtle);
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.3);
}

.profile-nav-label {
  font-family: var(--font-tech);
  font-size: 0.78rem;
  color: var(--cyan-core);
  font-weight: bold;
  letter-spacing: 0.08em;
}

.profile-seg-control {
  display: flex;
  background: var(--bg-panel);
  border-radius: 8px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  gap: 4px;
}

.profile-btn {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-family: var(--font-main);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.45rem 1rem;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.profile-btn:hover:not(.active) {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.profile-btn.active {
  background: var(--cyan-core);
  color: #000;
  font-weight: 700;
  box-shadow: 0 0 15px rgba(6, 182, 212, 0.45);
}

/* Dedicated Home Screen Layout */
.home-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  text-align: center;
  gap: 3.5rem;
}

.home-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}

.home-title {
  font-family: var(--font-tech);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin: 0;
}

.home-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  margin: 0;
  letter-spacing: 0.04em;
}

.home-profile-selector {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  width: 100%;
}

.home-profile-label {
  font-family: var(--font-tech);
  font-size: 0.88rem;
  color: var(--cyan-core);
  font-weight: 700;
  letter-spacing: 0.12em;
}

.profile-seg-control-home {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  width: 100%;
  max-width: 680px;
  background: var(--bg-panel);
  padding: 0.75rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.profile-seg-control-home .profile-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text-secondary);
  font-family: var(--font-main);
  font-size: 1.15rem;
  font-weight: 600;
  padding: 1.35rem 1rem;
  border-radius: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.profile-seg-control-home .profile-btn:hover:not(.active) {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.profile-seg-control-home .profile-btn.active {
  background: var(--cyan-core);
  color: #000;
  font-weight: 800;
  border-color: var(--cyan-core);
  box-shadow: 0 0 30px rgba(6, 182, 212, 0.45);
  transform: translateY(-2px);
}

.prof-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.7;
}

.profile-btn.active .prof-dot {
  opacity: 1;
  background: #000;
}

.home-action-box {
  display: flex;
  justify-content: center;
  width: 100%;
}

.home-start-btn {
  font-size: 1.25rem !important;
  padding: 1.25rem 3.8rem !important;
  border-radius: 16px !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em !important;
  box-shadow: 0 0 45px rgba(6, 182, 212, 0.5) !important;
  transition: all 0.25s ease !important;
}

.home-start-btn:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 0 65px rgba(6, 182, 212, 0.75) !important;
}

.home-footer {
  color: var(--text-dim);
  font-size: 0.8rem;
  font-family: var(--font-tech);
}

/* Results Navigation Bar */
.results-nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.back-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.65rem 1.4rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
  transition: all 0.2s ease;
}

.back-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--cyan-core);
  color: var(--cyan-core);
}

.results-status-pill {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.35);
  color: var(--emerald-safe);
  padding: 0.55rem 1.25rem;
  border-radius: 50px;
  font-family: var(--font-tech);
  font-size: 0.88rem;
  font-weight: 700;
}

.verified-tag {
  display: inline-block;
  background: rgba(16,185,129,0.15);
  color: var(--emerald-safe);
  border: 1px solid rgba(16,185,129,0.4);
  padding: 0.25rem 0.8rem;
  border-radius: 6px;
  font-family: var(--font-tech);
  font-size: 0.78rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

/* Full Viewport Scanner Screen */
#scannerScreen {
  min-height: 100vh;
  width: 100%;
  max-width: 100%;
  padding: 1.5rem 2.5rem;
  margin: 0;
}

@media (max-width: 768px) {
  .profile-seg-control-home {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
  #scannerScreen {
    padding: 1rem;
  }
  .results-nav-bar {
    flex-direction: column;
    align-items: stretch;
  }
  .back-btn {
    justify-content: center;
  }
  .results-status-pill {
    justify-content: center;
  }
}
