body {
  background-color: #05080d;
  color: #d9e6f2;
  font-family: 'Segoe UI', Roboto, sans-serif;
  margin: 0;
  padding: 22px;
}

/* Big Bendel header */
.big-header {
  width: 100%;
  background: #0f172a;
  border: 2px solid #3dbdff;
  border-radius: 10px;
  padding: 28px 10px;
  margin-bottom: 32px;
  text-align: center;

  box-shadow:
      0 15px 40px rgba(0,0,0,0.45),
      0 6px 16px rgba(0,0,0,0.32);
}
.big-header-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #7dd3fc;
  letter-spacing: 2px;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.big-header-subtitle {
  font-size: 1.1rem;
  font-weight: 700;
  color: #38bdf8;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

/* Status strip */
.header-strip {
  background: #0e161f;
  padding: 12px 18px;
  border-radius: 6px;
  border: 1px solid #1a2733;
  margin-bottom: 22px;
  font-size: 0.95rem;
  color: #facc15;

  box-shadow:
      0 10px 24px rgba(0,0,0,0.42),
      0 4px 10px rgba(0,0,0,0.28);
}

/* Tabs */
.tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.tab-btn {
  padding: 8px 14px;
  background: #0d141c;
  border: 1px solid #1c2734;
  border-radius: 6px;
  color: #9db4c4;
  font-weight: 600;
  cursor: pointer;
}
.tab-btn.active {
  border-color: #3dbdff;
  color: #3dbdff;
  background: #0f1b26;
}

/* Panels */
.panel {
  display: none;
}
.panel.active {
  display: block;
}

/* Section wrapper (big floating card for each tab) */
.section-wrapper {
  background: #0a0f14;
  padding: 24px;
  border-radius: 14px;
  margin-bottom: 30px;

  box-shadow:
      0 12px 28px rgba(0, 0, 0, 0.45),
      0 6px 14px rgba(0, 0, 0, 0.32);

  border: 1px solid rgba(255,255,255,0.04);
}

/* Tiles */
.tile {
  background: #0b1117;
  border: 1px solid #1c2734;
  border-left-width: 6px;
  margin-bottom: 24px;
  padding: 18px;
  border-radius: 10px;

  box-shadow:
    0px 10px 28px rgba(0, 0, 0, 0.55),
    0px 4px 12px rgba(0, 0, 0, 0.35);
}
.tile.green  { border-left-color: #4ade80; }
.tile.blue   { border-left-color: #3b82f6; }
.tile.yellow { border-left-color: #facc15; }
.tile.red    { border-left-color: #f97373; }

.section-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #4ade80;
  display: flex;
  gap: 8px;
  align-items: center;
}
.section-title span.icon {
  font-size: 1.1rem;
}

/* List formatting */
.simple-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.simple-list li {
  padding: 6px 0;
  border-bottom: 1px solid #151e28;
  font-size: 0.95rem;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.simple-list li:last-child {
  border-bottom: none;
}
.simple-list li span.value {
  color: #e2f3ff;
  font-weight: 600;
}

/* Divider */
.divider {
  width: 100%;
  height: 1px;
  margin: 25px 0;
  background: linear-gradient(
    to right,
    rgba(255,255,255,0.03),
    rgba(255,255,255,0.18),
    rgba(255,255,255,0.03)
  );
}

/* Badges for task status */
.badge {
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}
.badge-today {
  background: #facc15;
  color: #1a1a1a;
}
.badge-overdue {
  background: #f97373;
  color: #1a1a1a;
}
.badge-upcoming {
  background: #38bdf8;
  color: #0d1b24;
}
.badge-completed {
  background: #4ade80;
  color: #0f1f12;
}

/* Gauges (marine-tech style) */
.gauge-block {
  margin-top: 10px;
}
.gauge-label-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  margin-bottom: 4px;
}
.gauge-track {
  width: 100%;
  height: 11px;
  border-radius: 999px;
  background: #020617;
  overflow: hidden;
  border: 1px solid #1e293b;
}
.gauge-fill {
  height: 100%;
  border-radius: 999px;
}
.gauge-workload {
  background: linear-gradient(90deg, #22c55e, #16a34a, #15803d);
}
.gauge-tasks {
  background: linear-gradient(90deg, #facc15, #f97316, #ef4444);
}
.gauge-cash {
  background: linear-gradient(90deg, #38bdf8, #0ea5e9, #0369a1);
}

/* Sparkline */
.sparkline-box {
  margin-top: 10px;
}
.sparkline-caption {
  font-size: 0.78rem;
  color: #9db4c4;
  margin-top: 4px;
}
.sparkline-box svg {
  width: 100%;
  height: 48px;
}

/* Schedule section headers */
.schedule-section-header {
  margin: 20px 0 8px 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: #7dd3fc;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Insights text items */
.insight-item {
  margin-top: 10px;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* =========================
   STATIONS PANEL (V2 CLEAN)
   ========================= */

.station-panel {
  display: none;
  background: #0b141a;
  border: 1px solid #1e3a46;
  border-radius: 8px;
  padding: 12px;
  color: #cfefff;
  font-family: monospace;
  white-space: pre-wrap;
}

.station-panel.active {
  display: block;
}

.nav-buttons {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}

.sub-btn {
  background: #0f1f2a;
  border: 1px solid #1e3a46;
  color: #8fd3ff;
  padding: 6px 10px;
  border-radius: 6px;
  cursor: pointer;
}

.sub-btn.active {
  background: #e9e9e9;
  color: #000;
}

/* Mobile */
@media (max-width: 600px) {
  body {
    padding: 14px;
  }
  .big-header-title {
    font-size: 1.9rem;
  }
}