/* ─── Palette: Deep Teal & Medical White ─── */
:root {
  --teal-dark:   #064e5c;
  --teal-mid:    #0a7a8f;
  --teal-light:  #12a8c0;
  --accent:      #f0a500;
  --bg-light:    #f4f8f9;
  --text-dark:   #1a2e35;
  --text-muted:  #567a84;
  --white:       #ffffff;
  --card-border: #c5dde3;
}

/* Cover slide 
.reveal .slide-background-content { background: var(--teal-dark); }*/

/* Section header override */
section.has-dark-background { color: var(--white) !important; }

/* Cards */
.card {
  background: var(--white);
  border: 1.5px solid var(--card-border);
  border-radius: 10px;
  padding: 0.9em 1.1em;
  margin-bottom: 0.5em;
  box-shadow: 0 2px 8px rgba(6,78,92,.08);
}
.card-accent {
  border-left: 5px solid var(--teal-light);
}
.card-warn {
  border-left: 5px solid var(--accent);
}

/* Step badge */
.step-badge {
  display: inline-block;
  background: var(--teal-mid);
  color: var(--white);
  font-weight: 700;
  font-size: 0.78em;
  border-radius: 50%;
  width: 1.8em;
  height: 1.8em;
  line-height: 1.8em;
  text-align: center;
  margin-right: 0.4em;
  flex-shrink: 0;
}
.step-row {
  display: flex;
  align-items: flex-start;
  gap: 0.5em;
  margin-bottom: 0.45em;
}
.step-text { font-size: 0.88em; line-height: 1.45; }

/* Pill tags */
.pill {
  display: inline-block;
  background: var(--teal-light);
  color: var(--white);
  border-radius: 20px;
  padding: 0.15em 0.75em;
  font-size: 0.78em;
  font-weight: 600;
  margin: 0.1em;
}
.pill-warn  { background: var(--accent); color: #1a2e35; }
.pill-muted { background: #c5dde3; color: var(--text-dark); }

/* Two-column helper */
.cols-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2em;
}
.cols-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.9em;
}

/* Section title card */
.section-title {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal-mid));
  color: var(--white);
  border-radius: 14px;
  padding: 1.1em 1.4em;
  margin-bottom: 0.8em;
}
.section-title h3 { margin: 0; font-size: 1.05em; font-weight: 700; letter-spacing: .03em; }
.section-title p  { margin: 0.2em 0 0; font-size: 0.82em; opacity: .85; }

/* Icon row */
.icon-row { font-size: 1.4em; margin-right: 0.3em; vertical-align: middle; }

/* Highlight number */
.big-num {
  font-size: 2.4em;
  font-weight: 800;
  color: var(--teal-mid);
  line-height: 1;
}

/* Timeline */
.timeline { list-style: none; padding: 0; margin: 0; position: relative; }
.timeline::before {
  content: '';
  position: absolute;
  left: 1.1em;
  top: 0; bottom: 0;
  width: 3px;
  background: var(--card-border);
  border-radius: 2px;
}
.timeline li {
  display: flex;
  gap: 0.9em;
  margin-bottom: 0.6em;
  position: relative;
}
.timeline .dot {
  flex-shrink: 0;
  width: 1.5em; height: 1.5em;
  background: var(--teal-mid);
  border: 3px solid var(--white);
  border-radius: 50%;
  margin-top: 0.2em;
  box-shadow: 0 0 0 2px var(--card-border);
  z-index: 1;
}
.timeline .tl-content { font-size: 0.86em; }
.timeline .tl-label   { font-weight: 700; color: var(--teal-dark); }

/* Table styling */
table { font-size: 0.82em !important; width: 100%; }
thead tr { background: var(--teal-dark) !important; color: white !important; }
tbody tr:nth-child(even) { background: var(--bg-light); }
td, th { padding: 0.4em 0.65em !important; vertical-align: top !important; }

/* Callout override */
.callout { font-size: 0.88em !important; }

/* Footer override */
.reveal .slide-footer { font-size: 0.65em !important; color: var(--text-muted) !important; }

/* Small helper */
.small  { font-size: 0.82em; }
.muted  { color: var(--text-muted); }

