@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: #e0f7f4;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

/* Navigation */
nav {
  background-color: #d6f4f1;
  padding: 16px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  border-bottom: 2px solid #b8ead7;
  position: sticky;
  top: 0;
  z-index: 100;
  flex-wrap: wrap;
  min-height: 78px;
}

nav a {
  text-decoration: none;
  color: #2aa198;
  font-weight: 700;
  font-size: 16px;
  padding: 8px 16px;
  border-radius: 6px;
  transition: background-color 0.3s ease;
  white-space: nowrap;
}

nav a:hover {
  background-color: #cce8e5;
}

nav a.active {
  background-color: #2aa198;
  color: white;
}

.nav-home-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  padding: 0;
  background: transparent;
  border-radius: 999px;
  transition: background-color 0.15s ease;
}

.nav-home-logo:hover {
  background: transparent;
}

.nav-home-logo:active {
  background: rgba(42, 161, 152, 0.15);
}

.nav-home-logo img {
  width: 42px;
  height: 42px;
  display: block;
}

.nav-center-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  max-width: 100%;
  margin: 0 auto;
}

.nav-spacer {
  display: none;
}

.nav-hamburger,
.nav-mobile-panel,
.nav-overlay {
  display: none;
}

.nav-more-menu {
  position: relative;
}

.nav-more-menu summary {
  list-style: none;
  cursor: pointer;
  text-decoration: none;
  color: #2aa198;
  font-weight: 700;
  font-size: 16px;
  padding: 8px 16px;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.nav-more-menu summary::-webkit-details-marker {
  display: none;
}

.nav-more-menu summary:hover {
  background-color: #cce8e5;
}

.nav-more-menu.active summary {
  background-color: #2aa198;
  color: white;
}

.nav-more-panel {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 180px;
  display: grid;
  gap: 6px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(42, 161, 152, 0.14);
  border-radius: 16px;
  box-shadow: 0 14px 36px rgba(34, 78, 92, 0.12);
}

.nav-more-panel a {
  display: block;
}

.daylight-warning {
  max-width: 1200px;
  margin: 14px auto 0;
  padding: 12px 16px;
  border-radius: 12px;
  background: #fff4d6;
  border: 1px solid #e8c96b;
  color: #5c4700;
  font-size: 14px;
  line-height: 1.5;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.daylight-warning strong {
  color: #7a5b00;
}

.water-quality-warning-list {
  display: grid;
  gap: 10px;
}

.water-quality-warning-list-compact {
  gap: 8px;
}

.water-quality-warning {
  padding: 12px 14px;
  border-radius: 14px;
  background: #fff3e7;
  border: 1px solid #e2b47e;
  color: #6e3f11;
  box-shadow: 0 2px 8px rgba(110, 63, 17, 0.08);
}

.water-quality-warning-compact {
  padding: 10px 12px;
}

.water-quality-warning-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 6px;
}

.water-quality-warning-head strong {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #8a4b12;
}

.water-quality-warning-head span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #a55c17;
}

.water-quality-warning p {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
}

.water-quality-warning p + p {
  margin-top: 6px;
}

.water-quality-warning-meta {
  margin-top: 8px;
  font-size: 12px;
  color: #875427;
}

.water-quality-warning-meta a {
  color: inherit;
  font-weight: 600;
}

.best-window-banner + .water-quality-warning-list,
.map-best-window-banner + .water-quality-warning-list {
  margin-top: 8px;
}

.water-quality-warning-list + .water-quality-warning-list {
  margin-top: 8px;
}

.jellyfish-warning {
  background: linear-gradient(135deg, #e5f7ff 0%, #d8edff 100%);
  border-color: #79bfea;
  color: #12466b;
  box-shadow: 0 2px 8px rgba(18, 70, 107, 0.1);
}

.jellyfish-warning .water-quality-warning-head strong {
  color: #075985;
}

.jellyfish-warning .water-quality-warning-head span {
  color: #1d75a8;
}

.jellyfish-warning .water-quality-warning-meta {
  color: #245f86;
}

/* Main Container */
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 20px;
}

/* ==================== REPORT PAGE ==================== */
.header-centered {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  background-color: #d6f4f1;
  border-radius: 12px;
  padding: 16px 14px;
  gap: 12px;
  width: 100%;
  margin-bottom: 20px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.title-block {
  text-align: left;
  flex: 1;
  min-width: 200px;
}

.title-row {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
}

.title-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.title-block h1 {
  font-size: 28px;
  margin: 0;
  font-weight: 700;
  color: #000;
}

.title-logo {
  width: 72px;
  height: 72px;
  flex: 0 0 auto;
}

.title-block h2 {
  font-size: 16px;
  margin: 4px 0 0;
  color: #555;
}

.island-summary {
  background: linear-gradient(135deg, #ffffff, #f4fffd);
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(42, 161, 152, 0.1);
  border: 1px solid rgba(42, 161, 152, 0.16);
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
  font-size: 15px;
  justify-content: space-between;
  text-align: left;
  min-width: 220px;
}

.live-report-summary-wrap {
  display: flex;
  justify-content: center;
  margin: 0 0 18px;
}

.island-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-bottom: 8px;
}

.island-header h3 {
  margin: 0;
  font-size: 19px;
  color: #2aa198;
}

.island-header-minimal {
  margin-bottom: 0;
}

.island-header-minimal .snorkel-score {
  margin-left: 10px;
}

.snorkel-wrapper {
  width: 100%;
  max-width: 1380px;
  display: grid;
  gap: 14px;
  padding: 8px;
  margin: 0 auto;
  box-sizing: border-box;
  background: none;
  grid-template-columns: 1fr;
}

.shore-section {
  background: #d6f4f1;
  border: 1px solid rgba(42, 161, 152, 0.12);
  border-radius: 18px;
  box-shadow: none;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, grid-column 0.2s ease;
  min-width: 0;
}

.shore-summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 18px;
  min-height: 0;
  background: transparent;
}

.shore-summary::-webkit-details-marker {
  display: none;
}

.shore-summary-main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.shore-arrow {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(42, 161, 152, 0.18);
  background: rgba(255, 255, 255, 0.9);
  position: relative;
  align-self: flex-end;
}

.shore-arrow::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 10px;
  height: 10px;
  border-right: 2px solid #2aa198;
  border-bottom: 2px solid #2aa198;
  transform: rotate(45deg) translate(-1px, -1px);
  transition: transform 0.2s ease;
}

.shore-section[open] .shore-arrow::before {
  transform: rotate(-135deg) translate(-1px, -1px);
}

.shore-summary-title p {
  margin: 0;
  font-size: 19px;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
  color: #2aa198;
}

.shore-summary-title h3 {
  margin: 6px 0 4px;
  font-size: 36px;
  line-height: 0.95;
  color: #176e69;
}

.shore-summary-title span {
  display: inline-block;
  color: #42625f;
  font-size: 13px;
  max-width: none;
  line-height: 1.25;
}

.shore-details {
  padding: 0 14px 14px;
}

.shore-expanded-header {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  padding: 0 2px 12px;
}

.shore-expanded-meta {
  color: #6b8884;
  font-size: 12px;
}

.snorkel-group-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
  align-items: start;
  width: 100%;
}

@media (min-width: 900px) {
  .snorkel-wrapper {
    grid-template-columns: 1fr 1fr;
  }

  .shore-section[open] {
    grid-column: 1 / -1;
  }
}

@media (min-width: 780px) {
  .snorkel-group-grid.grid-two {
    grid-template-columns: 1fr 1fr;
  }

  .snorkel-group-grid.grid-three {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.spot-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.07);
  border: 1px solid rgba(42, 161, 152, 0.12);
  font-size: 14px;
  min-width: 0;
  width: 100%;
  cursor: pointer;
  perspective: 1400px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.spot-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.09);
}

.spot-card:focus-visible {
  outline: 3px solid rgba(42, 161, 152, 0.35);
  outline-offset: 3px;
}

.spot-card-inner {
  display: grid;
  transform-style: preserve-3d;
  transition: transform 0.65s ease;
}

.spot-card.is-flipped .spot-card-inner {
  transform: rotateY(180deg);
}

.spot-card-face {
  grid-area: 1 / 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 12px;
  min-width: 0;
  min-height: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 16px;
}

.spot-card-back {
  transform: rotateY(180deg);
  background: linear-gradient(180deg, #ffffff, #f4fffd);
}

.spot-card-back-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}

.spot-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}

.spot-card-heading {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.spot-card-heading h3 {
  margin: 0;
  font-size: 17px;
  color: #2aa198;
}

.spot-score-pill {
  min-width: 96px;
  text-align: center;
  border: 2px solid currentColor;
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 18px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.85);
}

.protected-badge {
  background: #2aa198;
  color: white;
  padding: 2px 7px;
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.snorkel-score {
  font-size: 22px;
  font-weight: bold;
}

.region-towns {
  font-size: 12px;
  color: #62706e;
  margin-top: 4px;
}

.spot-card-hint {
  margin-top: auto;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6f8784;
  text-align: center;
}

.best-window-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 12px;
  background: #f3fbfa;
  border: 1px solid rgba(42, 161, 152, 0.1);
  min-height: 44px;
}

.best-window-banner-head {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
}

.best-window-banner strong {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #688381;
  line-height: 1;
}

.best-window-banner em {
  font-style: normal;
  color: #204e4a;
  font-size: 13px;
  text-align: right;
  white-space: nowrap;
}

.best-window-banner em span {
  font-weight: 700;
}

.condition-chip-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.condition-chip {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px 10px;
  border-radius: 12px;
  background: #f3fbfa;
  border: 1px solid rgba(42, 161, 152, 0.1);
  min-height: 56px;
}

.condition-chip-head {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
}

.condition-chip span {
  font-size: 14px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
}

.condition-chip strong {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #688381;
  line-height: 1;
}

.condition-chip em {
  font-style: normal;
  color: #204e4a;
  font-size: 13px;
}

.chip-icon {
  width: 18px;
  height: 18px;
  display: inline-block;
  object-fit: contain;
  vertical-align: middle;
}

.chip-icon-inline {
  width: 16px;
  height: 16px;
  margin-right: 6px;
}

.map-chip-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
  flex: 0 0 auto;
}

.tide-chart-card {
  border-radius: 14px;
  background: linear-gradient(180deg, #f7fcff, #eef8ff);
  border: 1px solid rgba(96, 146, 214, 0.14);
  padding: 10px 12px 10px;
  min-width: 260px;
  max-width: 340px;
  width: 100%;
  margin: 0 auto 10px auto;
  box-sizing: border-box;
}

.tide-chart-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 6px;
  color: #45678c;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.tide-chart-heading span:first-child {
  display: inline-flex;
  align-items: center;
}

.tide-chart {
  width: 100%;
  min-width: 240px;
  max-width: 320px;
  height: 210px;
  overflow: visible;
  display: block;
  margin: 0 auto;
}

.tide-curve {
  fill: none;
  stroke: #4f95d6;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tide-point-high {
  fill: #1eaa5a;
}

.tide-point-low {
  fill: #2f6fb6;
}

.tide-point-now {
  fill: #f08c2e;
  stroke: #ffffff;
  stroke-width: 2;
}

.tide-hit-area {
  fill: transparent;
  pointer-events: all;
}

.tide-hover-bubble {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.16s ease;
  pointer-events: none;
}

.tide-marker-group:hover .tide-hover-bubble,
.tide-marker-group:focus .tide-hover-bubble,
.tide-marker-group:focus-visible .tide-hover-bubble {
  opacity: 1;
  visibility: visible;
}

.tide-label-box {
  fill: rgba(255, 255, 255, 0.92);
  stroke: rgba(96, 146, 214, 0.2);
  stroke-width: 1;
}

.tide-label-box-high {
  fill: rgba(30, 170, 90, 0.14);
  stroke: rgba(30, 170, 90, 0.42);
}

.tide-label-box-low {
  fill: rgba(47, 111, 182, 0.14);
  stroke: rgba(47, 111, 182, 0.42);
}

.tide-label-value {
  font-size: 11px;
  fill: #295784;
  font-weight: 700;
}

.tide-label-value-high {
  fill: #177d43;
}

.tide-label-value-low {
  fill: #245999;
}

.tide-label-time {
  font-size: 9px;
  fill: #6381a0;
}

.tide-label-time-high {
  fill: #2f9157;
}

.tide-label-time-low {
  fill: #4d79b3;
}

.tide-now-badge {
  fill: rgba(240, 140, 46, 0.16);
  stroke: rgba(240, 140, 46, 0.45);
  stroke-width: 1;
}

.tide-now-text {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  fill: #b25b07;
}

.tide-fallback {
  color: #54708e;
  font-size: 13px;
}

.condition-breakdown {
  display: grid;
  gap: 10px;
}

.condition-breakdown-panel {
  border-radius: 14px;
  padding: 12px;
  border: 1px solid rgba(42, 161, 152, 0.12);
}

.condition-breakdown-good {
  background: linear-gradient(180deg, #f4fff8, #ebfaf1);
  border-color: rgba(30, 170, 90, 0.16);
}

.condition-breakdown-bad {
  background: linear-gradient(180deg, #fff8f2, #fff1e8);
  border-color: rgba(204, 51, 0, 0.14);
}

.condition-breakdown-panel h4 {
  margin: 0 0 8px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #375f5b;
}

.condition-breakdown-panel ul {
  margin: 0;
  padding-left: 18px;
  color: #204e4a;
}

.condition-breakdown-panel li + li {
  margin-top: 7px;
}

.island-conditions ul {
  margin: 4px 0 0 14px;
  padding: 0;
  list-style-type: disc;
}

.island-conditions li {
  margin-bottom: 3px;
  font-size: 14px;
}

/* ==================== DAY FORECAST PAGE ==================== */
.forecast-header {
  text-align: center;
  margin-bottom: 20px;
}

.forecast-header h1 {
  margin: 0;
  font-size: 32px;
  font-weight: 700;
  color: #000;
}

.forecast-date {
  font-size: 18px;
  font-weight: 600;
  color: #555;
  margin-top: 4px;
}

.seo-intro {
  max-width: 920px;
  margin: 12px auto 18px;
  text-align: center;
  color: #4f6d6a;
  font-size: 16px;
  line-height: 1.5;
}

.day-region-groups,
.weekly-groups {
  display: grid;
  gap: 24px;
  max-width: 1280px;
  margin: 20px auto 0;
}

.region-forecast-group {
  display: grid;
  gap: 14px;
}

.region-day-card-list {
  display: grid;
  gap: 18px;
}

.region-day-card,
.weekly-table-shell {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(42, 161, 152, 0.15);
  border-radius: 22px;
  box-shadow: 0 14px 36px rgba(34, 78, 92, 0.08);
}

.region-subregion-dropdown {
  overflow: hidden;
}

.weekly-table-shell {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.region-day-card-head {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 18px 14px;
  cursor: pointer;
}

.region-day-card-head::-webkit-details-marker {
  display: none;
}

.region-day-card-head h3 {
  color: #2aa198;
  font-size: 24px;
  margin: 0;
}

.region-day-card-head p {
  margin: 6px 0 0;
  color: #6d8180;
  font-size: 17px;
}

.forecast-summary-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.forecast-summary-label {
  color: #54708e;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.region-subregion-dropdown .shore-arrow {
  align-self: center;
}

.region-subregion-dropdown[open] .shore-arrow::before {
  transform: rotate(-135deg) translate(-1px, -1px);
}

.region-day-chart-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 0 18px 18px;
}

.region-day-chart-panel {
  background: #f4fbfa;
  border: 1px solid rgba(42, 161, 152, 0.12);
  border-radius: 16px;
  padding: 12px;
}

.region-day-chart-label {
  display: grid;
  gap: 2px;
  margin-bottom: 10px;
}

.region-day-chart-label strong {
  color: #315f5c;
  font-size: 16px;
}

.region-day-chart-label span {
  color: #728887;
  font-size: 13px;
}

.chart-empty-state {
  min-height: 180px;
  display: grid;
  place-items: center;
  text-align: center;
  color: #68817f;
  font-size: 14px;
}

canvas {
  max-width: 100%;
  height: auto;
}

/* ==================== WEEK FORECAST PAGE ==================== */
.weekly-section {
  background: #e0f7f4;
  width: 100%;
  color: #000000;
  margin: 0 auto;
}

.weekly-header {
  text-align: center;
  margin-bottom: 20px;
}

.weekly-header h1 {
  margin: 0;
  font-size: 32px;
  font-weight: 700;
  color: #000;
}

.week-range {
  margin-top: 5px;
  font-weight: 600;
  font-size: 18px;
  color: #555;
}

.weekly-table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  background: white;
  border-radius: 22px;
  overflow: hidden;
}

.weekly-table th,
.weekly-table td {
  padding: 10px 14px;
  font-size: 22px;
  font-weight: 600;
  color: #000000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.weekly-table th {
  background-color: #d6f4f1;
  color: #2aa198;
  font-size: 25px;
  border-bottom: 2px solid rgba(42, 161, 152, 0.18);
}

.weekly-table th span {
  display: block;
  margin-top: 4px;
  font-size: 14px;
  font-weight: 600;
  color: #658886;
}

.weekly-table td.region {
  text-align: left;
  font-weight: 700;
  color: #000000;
  font-size: 20px;
  white-space: nowrap;
}

.weekly-table tbody tr:hover {
  background-color: #f5f5f5;
}

/* ==================== FOOTER ==================== */
footer {
  font-size: 11px;
  color: #777;
  margin-top: 30px;
  padding: 20px;
  text-align: center;
  border-top: 1px solid #d0e8e5;
}

/* ==================== LOADING STATE ==================== */
.loading {
  grid-column: 1 / -1;
  text-align: center;
  padding: 2em;
  font-style: italic;
  color: #666;
}

.error-message {
  color: #cc3300;
  font-size: 16px;
  text-align: center;
  margin-top: 20px;
  padding: 15px;
  background-color: #ffe6e6;
  border-radius: 8px;
  display: none;
}

/* ==================== FEEDBACK PAGE ==================== */
.feedback-header {
  max-width: 860px;
  margin: 0 auto 20px;
  text-align: center;
}

.feedback-header h1 {
  margin: 0;
  font-size: 34px;
  color: #000000;
}

.feedback-header p {
  margin: 8px 0 0;
  color: #55706e;
  font-size: 18px;
}

.feedback-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 20px;
  align-items: start;
}

.feedback-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(42, 161, 152, 0.14);
  border-radius: 22px;
  box-shadow: 0 14px 36px rgba(34, 78, 92, 0.08);
  padding: 20px;
}

.feedback-form {
  display: grid;
  gap: 18px;
}

.feedback-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.feedback-field {
  display: grid;
  gap: 8px;
}

.feedback-field span {
  color: #315f5c;
  font-size: 14px;
  font-weight: 700;
}

.feedback-field input,
.feedback-field select,
.feedback-field textarea {
  width: 100%;
  border: 1px solid rgba(42, 161, 152, 0.18);
  border-radius: 14px;
  padding: 12px 14px;
  font: inherit;
  color: #21413f;
  background: #f9fffe;
  box-sizing: border-box;
}

.feedback-field textarea {
  min-height: 150px;
  resize: vertical;
}

.feedback-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

.feedback-primary-button,
.feedback-secondary-button {
  border: none;
  border-radius: 999px;
  padding: 12px 18px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.feedback-primary-button {
  background: #2aa198;
  color: #ffffff;
}

.feedback-secondary-button {
  background: #e7f5f4;
  color: #376d69;
}

.feedback-primary-button:disabled {
  opacity: 0.6;
  cursor: default;
}

.feedback-status {
  margin: 0;
  min-height: 20px;
  color: #4a6563;
  font-size: 14px;
}

.feedback-status-success {
  color: #1e8b4d;
}

.feedback-status-error {
  color: #ba3c1a;
}

.feedback-snapshot-head h2 {
  margin: 0;
  font-size: 24px;
  color: #2aa198;
}

.feedback-snapshot-head p {
  margin: 6px 0 0;
  color: #6b817f;
}

.feedback-snapshot-empty,
.feedback-snapshot {
  margin-top: 18px;
}

.feedback-snapshot-empty {
  color: #64807d;
  background: #f4fbfa;
  border: 1px dashed rgba(42, 161, 152, 0.22);
  border-radius: 18px;
  padding: 20px;
}

.feedback-snapshot-summary {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.feedback-snapshot-summary h3 {
  margin: 0;
  color: #1f6f6a;
  font-size: 26px;
}

.feedback-snapshot-summary p {
  margin: 6px 0 0;
  color: #6c8481;
}

.feedback-snapshot-score {
  padding: 10px 16px;
  border: 2px solid currentColor;
  border-radius: 999px;
  font-size: 28px;
  font-weight: 800;
  white-space: nowrap;
}

.feedback-metrics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.feedback-metric {
  background: #f4fbfa;
  border: 1px solid rgba(42, 161, 152, 0.12);
  border-radius: 16px;
  padding: 12px;
  display: grid;
  gap: 6px;
}

.feedback-metric strong {
  color: #5c7c79;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feedback-metric span {
  color: #234846;
  font-size: 18px;
}

.feedback-detail-list {
  margin-top: 16px;
  background: #f8fcfc;
  border: 1px solid rgba(42, 161, 152, 0.12);
  border-radius: 16px;
  padding: 14px 16px;
}

.feedback-detail-list strong {
  color: #456b68;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feedback-detail-list ul {
  margin: 10px 0 0 18px;
  padding: 0;
  color: #284d4a;
}

.feedback-detail-list li + li {
  margin-top: 6px;
}

.content-hero {
  max-width: 920px;
  margin: 0 auto 22px;
  text-align: center;
}

.content-hero h1 {
  margin: 0;
  font-size: 34px;
  color: #000000;
}

.content-hero p {
  margin: 10px 0 0;
  color: #577371;
  font-size: 18px;
  line-height: 1.6;
}

.content-stack,
.blog-grid {
  max-width: 1120px;
  margin: 0 auto;
}

.content-stack {
  display: grid;
  gap: 16px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.home-hero {
  max-width: 1120px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(240, 255, 252, 0.96));
  border: 1px solid rgba(42, 161, 152, 0.14);
  border-radius: 28px;
  box-shadow: 0 16px 40px rgba(34, 78, 92, 0.08);
  padding: 28px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 22px;
  align-items: center;
}

.home-hero-copy h1 {
  margin: 0;
  font-size: 42px;
  line-height: 1;
  color: #123f3c;
}

.home-brand-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.home-brand-row img {
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
  transition: opacity 0.15s ease;
}

.home-brand-row:active img {
  opacity: 0.7;
}

.home-hero-copy p {
  margin: 14px 0 0;
  color: #42625f;
  font-size: 18px;
  line-height: 1.65;
}

.home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.home-primary-link,
.home-secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  padding: 0 18px;
  text-decoration: none;
  font-weight: 700;
}

.home-primary-link {
  background: #2aa198;
  color: #ffffff;
}

.home-secondary-link {
  background: #ebf8f7;
  color: #2a6b67;
  border: 1px solid rgba(42, 161, 152, 0.16);
}

.home-hero-side {
  background: linear-gradient(180deg, #f4fbfa, #ecf9f7);
  border: 1px solid rgba(42, 161, 152, 0.12);
  border-radius: 22px;
  padding: 18px;
}

.home-hero-side h2 {
  margin: 0 0 10px;
  color: #1f6f6a;
  font-size: 21px;
}

.home-hero-side ul {
  margin: 0;
  padding-left: 18px;
  color: #385a57;
}

.home-hero-side li + li {
  margin-top: 8px;
}

.home-link-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.home-link-card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(42, 161, 152, 0.14);
  border-radius: 22px;
  box-shadow: 0 14px 36px rgba(34, 78, 92, 0.08);
  padding: 20px;
  text-decoration: none;
  display: grid;
  gap: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-link-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(34, 78, 92, 0.11);
}

.home-link-card strong {
  color: #1f6f6a;
  font-size: 23px;
}

.home-link-card span {
  color: #5f7b78;
  line-height: 1.55;
}

.content-card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(42, 161, 152, 0.14);
  border-radius: 22px;
  box-shadow: 0 14px 36px rgba(34, 78, 92, 0.08);
  padding: 20px;
}

.content-card h2 {
  margin: 0 0 10px;
  color: #1f6f6a;
  font-size: 24px;
}

.content-card h2 a {
  color: inherit;
  text-decoration: none;
}

.content-card h2 a:hover {
  text-decoration: underline;
}

.content-card p {
  margin: 0;
  color: #335552;
  line-height: 1.65;
}

.content-card p + p {
  margin-top: 12px;
}

.content-eyebrow {
  margin-bottom: 10px;
  color: #65807f;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-preview-card {
  display: flex;
  flex-direction: column;
}

.blog-preview-link {
  margin-top: 14px;
}

.blog-preview-link a {
  color: #2a6bb2;
  font-weight: 700;
  text-decoration: none;
}

.blog-preview-link a:hover {
  text-decoration: underline;
}

.detailed-reports-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.detail-link-card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(42, 161, 152, 0.14);
  border-radius: 22px;
  box-shadow: 0 14px 36px rgba(34, 78, 92, 0.08);
  padding: 20px;
  text-decoration: none;
  display: grid;
  gap: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.detail-link-card strong {
  color: #1f6f6a;
  font-size: 22px;
}

.detail-link-card span {
  color: #678280;
  font-size: 15px;
}

.detail-link-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(34, 78, 92, 0.11);
}

.region-report-hero {
  position: relative;
  margin-bottom: 16px;
}

.region-report-score {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  padding: 12px 18px;
  border: 2px solid currentColor;
  border-radius: 999px;
  font-size: 30px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.92);
}

.region-metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.region-report-hero h1 {
  font-size: 40px;
}

.region-report-hero p {
  font-size: 16px;
}

.region-metric-card {
  background: #f4fbfa;
  border: 1px solid rgba(42, 161, 152, 0.12);
  border-radius: 16px;
  padding: 14px;
  min-height: 88px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
}

.region-metric-head {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.region-metric-head strong {
  color: #65807f;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  min-width: 0;
}

.region-metric-card span {
  display: block;
  margin-top: 12px;
  color: #244a47;
  font-size: 17px;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.region-summary-copy {
  color: #335552;
  line-height: 1.65;
  font-size: 17px;
}

.region-summary-copy p {
  margin: 0;
}

.region-summary-copy p + p {
  margin-top: 12px;
}

.region-summary-breakdown {
  margin-top: 14px;
}

.standalone-region-charts {
  padding: 0;
}

.region-summary-breakdown .condition-breakdown-panel {
  padding: 14px;
}

.region-summary-breakdown .condition-breakdown-panel li {
  font-size: 15px;
  line-height: 1.45;
}

.region-weekly-table th,
.region-weekly-table td {
  font-size: 18px;
}

.search-card {
  max-width: 1120px;
  margin: 0 auto;
}

.search-controls {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 14px;
  align-items: end;
}

.search-field {
  display: grid;
  gap: 8px;
}

.search-field label {
  color: #315f5c;
  font-size: 14px;
  font-weight: 700;
}

.search-field select,
.search-field input {
  width: 100%;
  border: 1px solid rgba(42, 161, 152, 0.18);
  border-radius: 14px;
  padding: 12px 14px;
  font: inherit;
  color: #21413f;
  background: #f9fffe;
}

.search-button {
  border: none;
  border-radius: 999px;
  min-height: 46px;
  padding: 0 18px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  background: #2aa198;
  color: #ffffff;
}

.search-result-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 14px;
}

.search-result-meta h2 {
  margin: 0;
}

.search-result-meta p {
  margin: 6px 0 0;
}

.search-result-score {
  padding: 10px 16px;
  border: 2px solid currentColor;
  border-radius: 999px;
  font-size: 26px;
  font-weight: 800;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.92);
}

.search-results-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.85fr);
  gap: 16px;
  align-items: start;
}

.search-chart-panel {
  max-width: 640px;
}

.search-breakdown {
  gap: 12px;
}

.search-breakdown .condition-breakdown-panel {
  padding: 14px;
}

.search-breakdown .condition-breakdown-panel li {
  font-size: 14px;
  line-height: 1.45;
}

.search-message {
  background: #f4fbfa;
  border: 1px solid rgba(42, 161, 152, 0.12);
  border-radius: 18px;
  padding: 18px;
  color: #406460;
  line-height: 1.6;
}

.donovan-hero-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
}

.donovan-hero-pill {
  min-width: 220px;
  background: linear-gradient(180deg, #f8fefd, #eef8f7);
  border: 1px solid rgba(42, 161, 152, 0.12);
  border-radius: 18px;
  padding: 14px 16px;
}

.donovan-hero-pill strong {
  display: block;
  color: #1f6f6a;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.donovan-hero-pill span {
  display: block;
  margin-top: 6px;
  color: #345552;
  font-size: 17px;
  line-height: 1.45;
}

.donovan-card {
  max-width: 1120px;
  margin: 0 auto 16px;
}

.donovan-card h2 {
  margin: 0 0 14px;
}

.donovan-brief-head p {
  margin: 0;
  color: #466764;
  line-height: 1.65;
}

.donovan-summary-chip-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.donovan-metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.donovan-metric-card,
.donovan-window-card,
.donovan-tide-event {
  background: linear-gradient(180deg, #f8fefd, #eef8f7);
  border: 1px solid rgba(42, 161, 152, 0.12);
  border-radius: 18px;
  padding: 16px;
}

.donovan-summary-chip-row .condition-chip {
  padding: 14px 16px;
  min-height: 88px;
  gap: 8px;
}

.donovan-summary-chip-row .condition-chip span {
  font-size: 18px;
}

.donovan-summary-chip-row .condition-chip strong {
  font-size: 13px;
}

.donovan-summary-chip-row .condition-chip em {
  font-size: 17px;
  line-height: 1.45;
}

.donovan-summary-chip-row .chip-icon {
  width: 22px;
  height: 22px;
}

.donovan-metric-card strong,
.donovan-window-head h3,
.donovan-tide-event strong {
  display: block;
  color: #1f6f6a;
}

.donovan-metric-card span {
  display: block;
  margin-top: 8px;
  color: #173f3d;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.1;
}

.donovan-metric-card p,
.donovan-window-card p,
.donovan-tide-event p,
.donovan-tide-summary p {
  margin: 8px 0 0;
  color: #466764;
  line-height: 1.55;
}

.donovan-window-grid,
.donovan-overview-grid,
.donovan-tide-list {
  display: grid;
  gap: 12px;
}

.donovan-charts-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.donovan-chart-panel {
  max-width: none;
}

.donovan-tide-panel {
  max-width: none;
  width: 100%;
}

.donovan-tide-panel canvas {
  width: 100% !important;
  max-height: 260px;
}

.donovan-chart-label span {
  line-height: 1.5;
}

.donovan-direction-strip {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(68px, 1fr));
  gap: 8px;
}

.donovan-direction-chip {
  border-radius: 12px;
  background: #f3fbfa;
  border: 1px solid rgba(42, 161, 152, 0.1);
  padding: 8px 6px;
  text-align: center;
}

.donovan-direction-chip strong {
  display: block;
  color: #688381;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.donovan-direction-arrow {
  display: block;
  width: 28px;
  height: 28px;
  margin: 8px auto 0;
  position: relative;
  transform-origin: 50% 50%;
}

.donovan-direction-arrow::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 3px;
  width: 2px;
  height: 16px;
  background: #1f6f6a;
  border-radius: 999px;
  transform: translateX(-50%);
}

.donovan-direction-arrow::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 10px solid #1f6f6a;
  transform: translateX(-50%);
}

.donovan-direction-chip em {
  display: block;
  margin-top: 6px;
  color: #204e4a;
  font-style: normal;
  font-size: 12px;
}

.donovan-window-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.donovan-window-head span,
.donovan-tide-event span {
  color: #5f7b78;
  font-size: 14px;
}

.donovan-window-stats {
  margin: 12px 0 0;
  padding-left: 18px;
  color: #284d4a;
}

.donovan-window-stats li + li {
  margin-top: 6px;
}

.donovan-tide-summary {
  margin-bottom: 12px;
}

.donovan-tide-list {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.donovan-overview-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
  .donovan-tide-panel canvas {
    max-height: none;
  }

  .header-centered {
    flex-direction: column;
  }

  .title-block h1 {
    font-size: 24px;
  }

  .title-logo {
    width: 60px;
    height: 60px;
  }

  .title-block h2 {
    font-size: 14px;
  }

  .snorkel-wrapper {
    gap: 12px;
    padding: 8px;
  }

  .shore-summary {
    padding: 16px;
    min-height: 0;
  }

  .shore-summary-main {
    align-items: flex-start;
  }

  .shore-summary-title h3 {
    font-size: 30px;
  }

  .shore-expanded-header {
    justify-content: flex-start;
  }

  .spot-card-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .condition-chip-row {
    grid-template-columns: 1fr;
  }

  .weekly-table th,
  .weekly-table td {
    padding: 6px 8px;
    font-size: 20px;
  }

  .weekly-table th {
    font-size: 22px;
  }

  nav {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center !important;
    gap: 12px;
    padding: 12px 16px;
  }

  nav a {
    font-size: 14px;
    padding: 6px 12px;
  }

  .nav-center-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    max-width: 100%;
  }

  .nav-spacer {
    display: none;
  }

  .nav-more-panel {
    right: auto;
    left: 0;
  }

  .forecast-header h1 {
    font-size: 24px;
  }

  .region-forecast-group-head h2 {
    font-size: 22px;
  }

  .region-day-card-head h3 {
    font-size: 21px;
  }

  .region-day-chart-grid {
    grid-template-columns: 1fr;
  }

  .feedback-layout,
  .feedback-grid,
  .feedback-metrics-grid,
  .blog-grid,
  .donovan-charts-grid,
  .donovan-metric-grid,
  .detailed-reports-grid,
  .region-metrics-grid,
  .home-hero,
  .home-link-grid,
  .search-controls,
  .search-results-layout {
    grid-template-columns: 1fr;
  }

  .feedback-actions {
    flex-direction: column;
  }

  .search-button {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 12px;
  }

  .donovan-direction-strip {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 6px;
  }

  .donovan-direction-chip {
    padding: 6px 2px;
    border-radius: 10px;
  }

  .donovan-direction-chip strong {
    font-size: 9px;
    letter-spacing: 0.04em;
  }

  .donovan-direction-arrow {
    width: 22px;
    height: 22px;
    margin-top: 6px;
  }

  .donovan-direction-arrow::before {
    top: 3px;
    height: 12px;
  }

  .donovan-direction-arrow::after {
    border-left-width: 5px;
    border-right-width: 5px;
    border-bottom-width: 8px;
  }

  .donovan-direction-chip em {
    margin-top: 4px;
    font-size: 11px;
  }

  .home-brand-row img {
    display: none;
  }

  /* Mobile hamburger menu */
  nav {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center;
    padding: 10px 12px;
    position: relative;
  }

  .nav-home-logo {
    position: static;
    left: auto;
    top: auto;
    transform: none;
    flex-shrink: 0;
  }

  .nav-home-logo img {
    width: 36px;
    height: 36px;
  }

  /* Hamburger button */
  .nav-hamburger {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: #fff;
    border: 1px solid rgba(42, 161, 152, 0.25);
    border-radius: 8px;
    cursor: pointer;
    padding: 10px;
    flex-shrink: 0;
  }

  .nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #2aa198;
    border-radius: 2px;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .nav-hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* Slide-out navigation panel */
  .nav-mobile-panel {
    display: flex !important;
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    max-width: 85vw;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    padding: 70px 20px 20px;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transition: right 0.3s ease;
    overflow-y: auto;
  }

  .nav-mobile-panel.open {
    right: 0;
  }

  .nav-mobile-panel a {
    display: block;
    padding: 14px 16px;
    font-size: 16px;
    color: #2aa198;
    text-decoration: none;
    border-radius: 8px;
    margin-bottom: 6px;
    min-height: 48px;
  }

  .nav-mobile-panel a:hover,
  .nav-mobile-panel a.active {
    background: #d6f4f1;
    color: #176e69;
  }

  .nav-mobile-panel a.active {
    font-weight: 700;
  }

  .nav-mobile-divider {
    height: 1px;
    background: rgba(42, 161, 152, 0.2);
    margin: 12px 0;
  }

  /* Overlay when menu is open */
  .nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 999;
  }

  .nav-overlay.open {
    display: block;
  }

  /* Hide desktop nav elements on mobile */
  .nav-center-links,
  .nav-spacer,
  .nav-more-menu {
    display: none !important;
  }

  .daylight-warning {
    margin-top: 10px;
    padding: 10px 12px;
    font-size: 13px;
  }

  .weekly-table {
    width: max-content;
    min-width: 100%;
  }

  .weekly-table th,
  .weekly-table td {
    min-width: 72px;
  }

  .weekly-table th:first-child,
  .weekly-table td.region {
    min-width: 116px;
    position: sticky;
    left: 0;
    z-index: 1;
    background: #ffffff;
  }

  .weekly-table th:first-child {
    z-index: 2;
    background: #d6f4f1;
  }

  .weekly-table th span {
    font-size: 12px;
  }
}
