:root {
  --bg: #f4f7fa;
  --bg-accent: #e8eef4;
  --surface: #ffffff;
  --ink: #152033;
  --ink-muted: #5b6b7c;
  --border: #d7e0ea;
  --cases: #2f6fed;
  --cases-soft: #e8f0fe;
  --recovered: #0f8a7a;
  --recovered-soft: #e6f7f4;
  --deaths: #c23b4a;
  --deaths-soft: #fcecee;
  --tests: #3d4f66;
  --tests-soft: #eef2f6;
  --shadow: 0 10px 30px rgba(21, 32, 51, 0.06);
  --radius: 18px;
  --radius-sm: 12px;
  --font: "Plus Jakarta Sans", sans-serif;
  --header-h: 76px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  background:
    radial-gradient(circle at top left, rgba(47, 111, 237, 0.08), transparent 28%),
    radial-gradient(circle at top right, rgba(15, 138, 122, 0.07), transparent 24%),
    linear-gradient(180deg, #f7fafc 0%, var(--bg) 40%, #eef3f8 100%);
  color: var(--ink);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
}

main {
  opacity: 0;
  min-height: 100vh;
  pointer-events: none;
}

main.is-ready {
  opacity: 1;
  pointer-events: auto;
  animation: page-in 420ms ease both;
}

@keyframes page-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.app-loader {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background:
    radial-gradient(circle at top left, rgba(47, 111, 237, 0.12), transparent 30%),
    radial-gradient(circle at bottom right, rgba(15, 138, 122, 0.1), transparent 28%),
    #f4f7fa;
  transition: opacity 280ms ease, visibility 280ms ease;
}

.app-loader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.app-loader-card {
  width: min(420px, 100%);
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.app-loader-mark {
  width: 56px;
  height: 56px;
  margin-bottom: 0.85rem;
}

.app-loader-eyebrow {
  margin: 0 0 0.35rem;
  color: var(--ink-muted);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.app-loader-card h2 {
  margin: 0 0 0.65rem;
  font-size: 1.35rem;
  font-weight: 750;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.app-loader-status {
  margin: 0 0 1.15rem;
  color: var(--ink-muted);
  font-size: 0.95rem;
}

.app-loader-bar {
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: var(--bg-accent);
  overflow: hidden;
}

.app-loader-bar-fill {
  display: block;
  width: 12%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--cases), #5b8dff);
  transition: width 280ms ease;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: var(--header-h);
  padding: 0.9rem 1.5rem;
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(215, 224, 234, 0.9);
  backdrop-filter: blur(14px);
}

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

.brand-mark {
  width: 42px;
  height: 42px;
}

.brand-eyebrow,
.panel-kicker {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.3;
}

.section-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
}

.brand-copy h1,
.section-heading h3,
.location {
  margin: 0;
  color: var(--ink);
  font-weight: 750;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.section-heading h3 {
  font-size: 1.35rem;
}

.location {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.brand-copy h1 {
  font-size: 1.35rem;
}

.header-meta {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.date {
  color: var(--ink-muted);
  font-size: 0.92rem;
  font-weight: 500;
}

.btn-ghost,
.btn-primary-soft,
.metric-btn,
.sort-btn {
  font-family: inherit;
  cursor: pointer;
}

.btn-ghost,
.btn-primary-soft {
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
  padding: 0.55rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.btn-primary-soft {
  background: var(--cases-soft);
  border-color: transparent;
  color: var(--cases);
}

.btn-ghost:hover,
.btn-primary-soft:hover {
  transform: translateY(-1px);
  border-color: #c5d2e0;
}

.dashboard {
  width: min(1280px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1.5rem 0 3rem;
  display: grid;
  gap: 1.25rem;
}

.location-bar {
  padding: 0.25rem 0.15rem;
  animation: fade-up 480ms ease both;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.kpi-card {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.15rem 1.2rem 1.2rem 1.35rem;
  box-shadow: var(--shadow);
  animation: fade-up 520ms ease both;
}

.kpi-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
}

.kpi-card.tests::before { background: var(--tests); }
.kpi-card.cases::before { background: var(--cases); }
.kpi-card.recovered::before { background: var(--recovered); }
.kpi-card.deaths::before { background: var(--deaths); }

.kpi-label {
  margin: 0 0 0.55rem;
  color: var(--ink-muted);
  font-size: 0.84rem;
  font-weight: 600;
}

.kpi-value {
  margin: 0;
  font-size: clamp(1.55rem, 2.4vw, 2rem);
  font-weight: 750;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.kpi-card.cases .kpi-value { color: var(--cases); }
.kpi-card.recovered .kpi-value { color: var(--recovered); }
.kpi-card.deaths .kpi-value { color: var(--deaths); }
.kpi-card.tests .kpi-value { color: var(--tests); }

.kpi-sub {
  margin: 0.7rem 0 0;
  color: var(--ink-muted);
  font-size: 0.9rem;
  font-weight: 500;
}

.map-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(280px, 0.9fr);
  gap: 1rem;
  min-height: 560px;
}

.map-stage,
.stats-container,
.chart-card,
.guidance-section,
.news-container {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.map-stage {
  position: relative;
  min-height: 560px;
  border-radius: var(--radius);
  background: #d9e2ec;
}

#map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--radius);
  overflow: hidden;
}

.map-overlay {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 5;
  width: min(420px, calc(100% - 2rem));
  pointer-events: none;
}

.map-overlay-card {
  pointer-events: auto;
  position: relative;
  z-index: 2;
  display: grid;
  gap: 0.75rem;
  padding: 0.95rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(215, 224, 234, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.search-container {
  position: relative;
  z-index: 6;
}

#autoComplete,
#autoComplete:focus,
#autoComplete:hover {
  width: 100%;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0 0.95rem 0 2.4rem;
  color: var(--ink);
  caret-color: var(--cases);
  background-color: #fff;
  background-image: url(./magnifier.svg);
  background-repeat: no-repeat;
  background-position: 12px center;
  background-size: 16px;
  box-shadow: none;
  outline: none;
  font-family: inherit;
}

#autoComplete:focus {
  border-color: #9db7ef;
  box-shadow: 0 0 0 3px rgba(47, 111, 237, 0.12);
}

#autoComplete_list {
  position: absolute;
  z-index: 20;
  left: 0 !important;
  right: 0;
  width: 100% !important;
  margin: 0.25rem 0 0 !important;
  padding: 0.35rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow);
  max-height: 240px;
  overflow: auto;
}

#autoComplete_list:empty,
#autoComplete_list[hidden],
#autoComplete_list:not(:has(li)) {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
  border: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  box-shadow: none !important;
}

.autoComplete_result,
.no_result {
  margin: 0;
  padding: 0.7rem 0.8rem;
  border: 0;
  border-radius: 8px;
  list-style: none;
  color: var(--ink);
  background: transparent;
}

.autoComplete_result:hover,
.autoComplete_selected,
.autoComplete_selected:hover {
  background: var(--cases-soft);
  border: 0;
  color: var(--cases);
}

.autoComplete_highlighted,
.autoComplete_highlighted:hover {
  color: var(--cases);
  opacity: 1;
}

.map-view-btns-container {
  display: flex;
  gap: 0.35rem;
  padding: 0.3rem;
  border-radius: 999px;
  background: var(--bg);
  border: 1px solid var(--border);
  width: 100%;
}

.metric-btn {
  border: 0;
  border-radius: 999px;
  padding: 0.55rem 0.7rem;
  flex: 1;
  font-size: 0.86rem;
  font-weight: 650;
  background: transparent;
  color: var(--ink-muted);
  transition: background 160ms ease, color 160ms ease;
}

.metric-btn.TotalCases.is-active,
.metric-btn.TotalCases:hover {
  background: var(--cases-soft);
  color: var(--cases);
}

.metric-btn.Recovered.is-active,
.metric-btn.Recovered:hover {
  background: var(--recovered-soft);
  color: var(--recovered);
}

.metric-btn.deaths.is-active,
.metric-btn.deaths:hover {
  background: var(--deaths-soft);
  color: var(--deaths);
}

.stats-container {
  display: flex;
  flex-direction: column;
  height: 560px;
  max-height: 560px;
  overflow: hidden;
}

.table-title,
.chart-card-header,
.guidance-header,
.news-container-title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.2rem 0.85rem;
  flex-shrink: 0;
}

.table-container {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 0 0.4rem 0.6rem;
  -webkit-overflow-scrolling: touch;
}

#table-data {
  width: 100%;
  border-collapse: collapse;
}

.table-head th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: #f8fbfe;
  color: var(--ink-muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: left;
  padding: 0.85rem 0.9rem;
  border-bottom: 1px solid var(--border);
}

.table-head .metric {
  text-align: right;
}

.sort-btn {
  border: 0;
  background: transparent;
  color: inherit;
  padding: 0 0 0 0.35rem;
}

.country-info td {
  padding: 0.85rem 0.9rem;
  border-bottom: 1px solid #eef2f6;
  font-size: 0.94rem;
}

.country-info:nth-child(even) td {
  background: #f9fbfd;
}

.country-info .cases,
.country-info .today-cases {
  text-align: right;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
}

.country-info .today-cases {
  color: var(--cases);
}

.charts-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 1rem;
}

.chart-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
}

.chart-body {
  flex: 1;
  padding: 0.25rem 1rem 1rem;
  min-height: 280px;
}

.guidance-section {
  padding-bottom: 1.1rem;
}

.stay-safe-instructions {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.85rem;
  padding: 0 1.1rem 0.2rem;
  align-items: stretch;
}

.stay-safe-instructions figure {
  margin: 0;
  padding: 1rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  min-height: 168px;
}

.stay-safe-instructions img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin-bottom: 0.7rem;
  flex-shrink: 0;
}

.stay-safe-instructions figcaption {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.35;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: calc(1.35em * 2);
}

.news-container {
  padding-bottom: 1.2rem;
  overflow: hidden;
}

.news.glide {
  padding: 0 0.75rem 0.5rem;
}

.news .glide__slides {
  align-items: stretch;
  display: flex;
}

.news .glide__slide {
  height: auto;
}

.news-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  height: 100%;
  min-height: 340px;
  display: flex;
  flex-direction: column;
}

.news-cover {
  flex-shrink: 0;
}

.news-cover img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
  background: var(--bg-accent);
}

.news-info {
  padding: 0.95rem 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  flex: 1;
  min-height: 0;
}

.news-source,
.posting-time {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.news-card-title {
  margin: 0;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: calc(1.4em * 2);
}

.news-link {
  margin-top: auto;
}

.news-link a {
  color: var(--cases);
  font-weight: 650;
  text-decoration: none;
}

.glide__arrow {
  background: rgba(255, 255, 255, 0.96) !important;
  border: 1px solid var(--border) !important;
  box-shadow: var(--shadow);
  color: var(--ink) !important;
  width: 40px !important;
  height: 40px !important;
}

.modal {
  z-index: 2100;
}

.modal.show {
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal-backdrop {
  z-index: 2050;
}

.modal-dialog {
  margin: 0 auto;
  width: min(860px, calc(100vw - 1.5rem));
  max-width: 860px;
  height: min(78vh, 680px);
  max-height: 78vh;
}

.modal-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  max-height: 78vh;
  border: 0;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 24px 60px rgba(21, 32, 51, 0.22);
}

.modal-header,
.modal-footer {
  flex-shrink: 0;
  background: #f8fbfe;
  border-color: var(--border);
  padding: 1rem 1.25rem;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-title {
  font-family: var(--font);
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0;
  padding-right: 1rem;
  line-height: 1.35;
}

.modal-header .close {
  margin: 0;
  padding: 0.25rem;
  font-size: 1.6rem;
  line-height: 1;
  opacity: 0.7;
}

.modal-body {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 1.25rem 1.35rem;
  -webkit-overflow-scrolling: touch;
}

.modal-footer {
  display: flex;
  justify-content: flex-end;
}

.modal-footer .btn {
  font-family: var(--font);
  border-radius: 999px;
  padding: 0.5rem 1.1rem;
}

.maplibregl-popup-content,
.mapboxgl-popup-content {
  width: min(420px, 86vw);
  max-width: 420px;
  border-radius: 14px;
  background-color: #fff;
  padding: 0.85rem 1rem;
  box-shadow: var(--shadow);
}

.maplibregl-popup-close-button,
.mapboxgl-popup-close-button {
  font-size: 22px;
  color: var(--ink-muted);
  right: 6px;
  top: 4px;
}

.country-info-window {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  min-width: 280px;
  font-family: var(--font);
}

.popup-identity {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 110px;
  padding-right: 0.85rem;
  border-right: 1px solid var(--border);
  flex-shrink: 0;
}

.popup-flag {
  width: 36px;
  height: 24px;
  object-fit: cover;
  border-radius: 3px;
  display: block;
}

.selected-country-name {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.2;
}

.popup-metrics {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 0.75rem;
  flex: 1;
  min-width: 0;
}

.popup-metric {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.popup-metric-label {
  color: var(--ink-muted);
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.popup-metric-value {
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 750;
  font-variant-numeric: tabular-nums;
}

.popup-metric-value.active { color: var(--cases); }
.popup-metric-value.recovered { color: var(--recovered); }
.popup-metric-value.death { color: var(--deaths); }

.about-covid-definition {
  max-width: 100%;
  margin: 0 auto 1.5rem;
}

.about-covid-definition:last-child {
  margin-bottom: 0.25rem;
}

.about-covid-definition h2 {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.15rem;
  font-weight: 750;
  margin: 0 0 0.75rem;
  color: var(--ink);
  line-height: 1.3;
}

.about-covid-definition h2 img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  flex-shrink: 0;
}

.about-covid-definition p,
.about-covid-definition li {
  color: var(--ink-muted);
  line-height: 1.65;
  margin: 0;
}

.safty {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
  align-items: start;
}

.safty ul {
  margin: 0;
  padding-left: 1.1rem;
}

.safty img,
.about-covid-definition figure img {
  width: 100%;
  max-height: 220px;
  object-fit: cover;
  border-radius: 12px;
}

.about-covid-definition figure {
  margin: 0;
}

.about-covid-definition figcaption {
  margin-top: 0.65rem;
  color: var(--ink-muted);
  font-size: 0.92rem;
}

footer {
  background: #152033;
  color: rgba(255, 255, 255, 0.86);
  padding: 2rem 1.5rem;
}

.about-data {
  width: min(1280px, 100%);
  margin: 0 auto;
}

.data-source h6 {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.data-source p {
  margin: 0.35rem 0;
  color: rgba(255, 255, 255, 0.72);
}

.data-source-link {
  color: #9ec0ff;
  text-decoration: none;
}

.data-source-link:hover {
  text-decoration: underline;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1100px) {
  .kpi-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stay-safe-instructions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .map-panel,
  .charts-container,
  .safty {
    grid-template-columns: 1fr;
  }

  .map-stage {
    min-height: 440px;
    height: 440px;
  }

  .stats-container {
    height: 360px;
    max-height: 360px;
    min-height: 360px;
  }
}

@media (max-width: 720px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .header-meta {
    width: 100%;
    justify-content: space-between;
  }

  .dashboard {
    width: calc(100% - 1.25rem);
    padding-top: 1rem;
    gap: 1rem;
  }

  .location {
    font-size: 1.55rem;
  }

  .kpi-grid,
  .stay-safe-instructions {
    grid-template-columns: 1fr;
  }

  .map-stage {
    min-height: 380px;
    height: 380px;
  }

  .stats-container {
    height: 320px;
    max-height: 320px;
    min-height: 320px;
  }

  .map-overlay {
    top: 0.75rem;
    left: 0.75rem;
    width: calc(100% - 1.5rem);
  }

  .map-view-btns-container {
    width: 100%;
    justify-content: space-between;
  }

  .metric-btn {
    flex: 1;
    padding-inline: 0.45rem;
    font-size: 0.8rem;
  }

  .guidance-header,
  .chart-card-header,
  .news-container-title {
    flex-direction: column;
  }

  .chart-card,
  .chart-body {
    min-height: 260px;
  }

  .country-info-window {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    min-width: 0;
  }

  .popup-identity {
    border-right: 0;
    border-bottom: 1px solid var(--border);
    padding-right: 0;
    padding-bottom: 0.65rem;
  }

  .popup-metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
  }

  .maplibregl-popup-content,
  .mapboxgl-popup-content {
    width: min(300px, 84vw);
  }

  .news.glide {
    padding: 0 0.35rem 0.5rem;
  }

  .news-card {
    min-height: 300px;
  }

  .news-card-title {
    font-size: 1.02rem;
  }

  .glide__arrow {
    display: none;
  }

  .modal.show {
    padding: 0.75rem;
  }

  .modal-dialog,
  .modal-content {
    height: min(86vh, 640px);
    max-height: 86vh;
  }

  .safty {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .site-header {
    padding: 0.85rem 1rem;
  }

  .brand-copy h1 {
    font-size: 1.15rem;
  }

  .date {
    font-size: 0.82rem;
  }

  .stay-safe-instructions {
    grid-template-columns: 1fr;
  }

  .table-head th,
  .country-info td {
    padding: 0.7rem 0.55rem;
    font-size: 0.86rem;
  }
}
