/* ==========================================================
   Tides Page — Eh-Local Design System
   Complete rewrite: clean, card-based, token-driven.
   Uses global tokens from ehlocal.css:
   --bg, --surface, --surface-hover, --border, --text,
   --text-secondary, --muted, --dim, --header-bg, --card-shadow,
   --radius-sm, --radius-md, --radius-lg, --red
   ========================================================== */

.tides-page {
    --tide-high-bg: rgba(34, 197, 94, 0.15);
    --tide-high-text: #4ade80;
    --tide-low-bg: rgba(59, 130, 246, 0.15);
    --tide-low-text: #60a5fa;
    --tide-accent: var(--red);
    background: var(--bg);
}

/* ==========================================================
   Hero Section
   ========================================================== */

.tides-hero {
    background: var(--header-bg);
    border-bottom: 1px solid var(--border);
    padding: 2.4rem 0 2rem;
}

.tides-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.95fr);
    gap: 1.5rem;
    align-items: start;
}

.tides-hero__summary {
    display: grid;
    gap: 0.85rem;
    align-content: start;
}

.tides-hero__eyebrow {
    margin: 0 0 0.5rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
}

.tides-hero__title {
    margin: 0;
    font-family: 'Druk Heavy', 'Arial Black', sans-serif;
    font-size: 2.35rem;
    line-height: 1.02;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: var(--text);
}

.tides-hero__deck {
    max-width: 38rem;
    margin: 0.75rem 0 0;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--muted);
}

/* --- Hero Stat Tiles --- */

.tides-hero__stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.tides-stat {
    padding: 0.85rem 0.95rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--surface);
}

.tides-stat__label {
    display: block;
    margin-bottom: 0.4rem;
    font-size: 0.69rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
}

.tides-stat__value {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 1.45rem;
    font-weight: 700;
    line-height: 1.05;
    color: var(--text);
}

.tides-stat__detail {
    display: block;
    margin-top: 0.28rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    line-height: 1.4;
    color: var(--muted);
}

/* ==========================================================
   Next Turn Card
   ========================================================== */

.tides-next-card {
    padding: 1.05rem 1.1rem 1rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: var(--surface);
}

.tides-next-card__label {
    margin: 0;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
}

.tides-next-card__time {
    margin: 0.55rem 0 0;
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.02;
    color: var(--text);
}

.tides-next-card__meta,
.tides-next-card__countdown,
.tides-next-card__subline {
    margin: 0.35rem 0 0;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.45;
    color: var(--text-secondary);
}

.tides-next-card__countdown {
    color: var(--text);
    font-weight: 700;
}

.tides-next-card__daylight {
    margin: 0.3rem 0 0;
    font-size: 0.88rem;
    color: var(--muted);
}

/* ==========================================================
   Daylight Summary Bar
   ========================================================== */

.tides-daylight {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.55rem 0.85rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    color: var(--muted);
}

.tides-daylight__label {
    font-weight: 600;
    color: var(--text);
    white-space: nowrap;
}

.tides-daylight__times {
    white-space: nowrap;
}

/* ==========================================================
   Section Layout
   ========================================================== */

.tides-section {
    padding: 2rem 0;
}

.tides-section--week {
    padding-top: 2.3rem;
}

.tides-section__head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.tides-section__eyebrow {
    margin: 0 0 0.35rem;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--red);
}

.tides-section__title {
    margin: 0;
    font-family: 'Druk Heavy', 'Arial Black', sans-serif;
    font-size: 1.6rem;
    line-height: 1.08;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--red);
}

.tides-section__note {
    max-width: 32rem;
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--muted);
}

/* ==========================================================
   Card Container
   ========================================================== */

.tides-today__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(19rem, 0.95fr);
    gap: 1rem;
    align-items: start;
}

.tides-card {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--surface);
    box-shadow: var(--card-shadow);
}

.tides-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.15rem 1.2rem 0;
}

.tides-card__title {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-size: 1.08rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text);
}

.tides-card__meta {
    margin: 0.25rem 0 0;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    line-height: 1.45;
    color: var(--muted);
}

.tides-card__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: rgba(255, 0, 0, 0.1);
    color: var(--red);
    font-size: 0.78rem;
    font-weight: 700;
    white-space: nowrap;
}

/* ==========================================================
   Tide Chart
   ========================================================== */

.tides-chart-wrap {
    padding: 0.9rem 1rem 1rem;
}

.tide-chart {
    border-radius: var(--radius-lg);
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 1rem 0.75rem 0.75rem;
}

.tide-chart__svg {
    display: block;
    width: 100%;
    height: auto;
}

.tide-chart__grid-line {
    stroke: var(--border);
    stroke-width: 0.5;
    stroke-dasharray: 4 4;
}

.tide-chart__axis-label,
.tide-chart__time-label,
.tide-chart__marker-height {
    font-family: 'Inter', sans-serif;
    fill: var(--muted);
}

.tide-chart__axis-label,
.tide-chart__time-label {
    font-size: 12px;
}

.tide-chart__time-label {
    text-anchor: middle;
}

.tide-chart__time-label--compact {
    font-size: 12px;
}

.tide-chart__curve {
    fill: none;
    stroke: var(--red);
    stroke-width: 2.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.tide-chart__fill {
    fill: rgba(255, 0, 0, 0.06);
}

.tide-chart__dot {
    stroke: var(--surface);
    stroke-width: 2;
}

.tide-chart__dot--high {
    fill: var(--tide-high-text);
}

.tide-chart__dot--low {
    fill: var(--tide-low-text);
}

.tide-chart__marker-label {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-anchor: middle;
}

.tide-chart__marker-label--high {
    fill: var(--tide-high-text);
}

.tide-chart__marker-label--low {
    fill: var(--tide-low-text);
}

.tide-chart__marker-height {
    font-size: 12px;
    text-anchor: middle;
}

.tide-chart__now-line {
    stroke: var(--red);
    stroke-width: 1.6;
    stroke-dasharray: 4 2;
}

.tide-chart__now-label {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    fill: var(--red);
    text-anchor: middle;
}

/* ==========================================================
   Tide Schedule (today's table)
   ========================================================== */

.tides-schedule {
    list-style: none;
    margin: 0;
    padding: 0.35rem 1rem 0;
}

.tides-schedule__item {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.8rem;
    align-items: start;
    padding: 0.85rem 0.1rem;
    border-top: 1px solid var(--border);
}

.tides-schedule__item:first-child {
    border-top: 0;
}

.tides-schedule__item--next {
    border-radius: var(--radius-md);
    background: rgba(255, 0, 0, 0.05);
    padding-left: 0.6rem;
    padding-right: 0.6rem;
}

.tides-schedule__type {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2rem;
    height: 2rem;
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.tides-schedule__type--high {
    background: var(--tide-high-bg);
    color: var(--tide-high-text);
}

.tides-schedule__type--low {
    background: var(--tide-low-bg);
    color: var(--tide-low-text);
}

.tides-schedule__top {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.75rem;
}

.tides-schedule__time {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
}

.tides-schedule__height {
    font-family: 'Inter', sans-serif;
    font-size: 0.96rem;
    font-weight: 700;
    color: var(--text);
}

.tides-schedule__daylight {
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.12rem 0.45rem;
    border-radius: var(--radius-sm);
    white-space: nowrap;
    margin-left: auto;
}

.tides-schedule__daylight--light {
    background: rgba(245, 190, 60, 0.14);
    color: #8a6d1b;
}

.tides-schedule__daylight--dark {
    background: rgba(100, 120, 160, 0.12);
    color: #6b7a8d;
}

.tides-schedule__meta {
    margin-top: 0.18rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    line-height: 1.45;
    color: var(--muted);
}

/* ==========================================================
   Summary Grid (below today's table)
   ========================================================== */

.tides-summary-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
    padding: 1rem;
}

.tides-summary {
    padding: 0.8rem 0.9rem;
    border-radius: var(--radius-md);
    background: var(--bg);
    border: 1px solid var(--border);
}

.tides-summary__label {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.71rem;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    color: var(--muted);
}

.tides-summary__value {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.05;
    color: var(--text);
}

.tides-summary__detail {
    display: block;
    margin-top: 0.25rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.84rem;
    line-height: 1.4;
    color: var(--muted);
}

/* ==========================================================
   Fallback (when chart unavailable)
   ========================================================== */

.tides-fallback {
    padding: 1rem;
}

.tides-fallback__eyebrow {
    margin: 0;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--red);
}

.tides-fallback__title {
    margin: 0.45rem 0 0;
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.25;
    color: var(--text);
}

.tides-fallback__copy {
    margin: 0.45rem 0 0;
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--muted);
}

.tides-fallback__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr));
    gap: 0.75rem;
    margin-top: 1rem;
}

.tides-fallback__item {
    padding: 0.85rem 0.9rem;
    border-radius: var(--radius-md);
    background: var(--bg);
    border: 1px solid var(--border);
}

.tides-fallback__item-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
}

.tides-fallback__item-value {
    display: block;
    margin-top: 0.35rem;
    font-family: 'Inter', sans-serif;
    font-size: 1.28rem;
    font-weight: 700;
    line-height: 1.05;
    color: var(--text);
}

.tides-fallback__item-detail {
    display: block;
    margin-top: 0.3rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.84rem;
    line-height: 1.45;
    color: var(--muted);
}

/* ==========================================================
   Week Forecast Grid
   ========================================================== */

.tides-week__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(16.8rem, 1fr));
    gap: 0.95rem;
}

.tides-week__dots {
    display: none;
}

.tide-day {
    padding: 1rem;
}

.tide-day--today {
    border-color: var(--red);
    box-shadow: 0 0 0 1px var(--red);
}

.tide-day__header {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.8rem;
}

.tide-day__name {
    margin: 0;
    font-family: 'Druk Heavy', 'Arial Black', sans-serif;
    font-size: 1rem;
    line-height: 1.2;
    text-transform: uppercase;
    color: var(--text);
}

.tide-day--today .tide-day__name {
    color: var(--red);
}

.tide-day__date {
    margin: 0.18rem 0 0;
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    color: var(--muted);
}

.tide-day__range {
    display: inline-flex;
    align-items: center;
    padding: 0.3rem 0.65rem;
    border-radius: 999px;
    background: var(--tide-high-bg);
    color: var(--tide-high-text);
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
}

.tide-day__chart {
    margin-bottom: 0.8rem;
}

.tide-day__chart .tide-chart {
    padding: 0.7rem 0.5rem 0.45rem;
}

.tide-day__chart .tide-chart__curve {
    stroke-width: 2.1;
}

.tide-day__chart .tide-chart__dot {
    stroke-width: 1.4;
}

/* --- Day Entries --- */

.tide-day__entries {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
}

.tide-day__entry {
    padding: 0.68rem 0.75rem;
    border-radius: var(--radius-md);
    background: var(--bg);
    border: 1px solid var(--border);
}

.tide-day__entry-meta {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 0.3rem;
}

.tide-day__entry-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.35rem;
    height: 1.35rem;
    border-radius: var(--radius-sm);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.tide-day__entry-pill--high {
    background: var(--tide-high-bg);
    color: var(--tide-high-text);
}

.tide-day__entry-pill--low {
    background: var(--tide-low-bg);
    color: var(--tide-low-text);
}

.tide-day__entry-time {
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text);
}

.tide-day__entry-height {
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    color: var(--muted);
}

.tide-day__entry-daylight {
    font-size: 0.78rem;
    line-height: 1;
    margin-left: auto;
}

.tide-day__entry-daylight--light {
    color: #b8941e;
}

.tide-day__entry-daylight--dark {
    color: var(--dim);
}

.tide-day__daylight-bar {
    margin-top: 0.55rem;
    padding-top: 0.55rem;
    border-top: 1px solid var(--border);
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: var(--muted);
    text-align: center;
}

.tide-day__footer {
    display: flex;
    gap: 0.75rem;
    justify-content: space-between;
    margin-top: 0.8rem;
    padding-top: 0.8rem;
    border-top: 1px solid var(--border);
    font-family: 'Inter', sans-serif;
    font-size: 0.84rem;
    color: var(--muted);
}

/* ==========================================================
   Station Source Card
   ========================================================== */

.tides-station {
    padding: 1rem 0 2.35rem;
}

.tides-station__card {
    display: flex;
    align-items: start;
    gap: 1rem;
    padding: 1rem 1.1rem;
}

.tides-station__mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: var(--radius-md);
    background: rgba(255, 0, 0, 0.1);
    color: var(--red);
    font-family: 'Druk Heavy', 'Arial Black', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.tides-station__title {
    margin: 0;
    font-family: 'Druk Heavy', 'Arial Black', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.35;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text);
}

.tides-station__copy {
    margin: 0.35rem 0 0;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--muted);
}

/* ==========================================================
   Responsive
   ========================================================== */

@media (max-width: 900px) {
    .tides-hero__grid,
    .tides-today__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .tides-hero {
        padding: 1.55rem 0 1.35rem;
    }

    .tides-hero__title {
        font-size: 1.8rem;
    }

    .tides-hero__deck {
        font-size: 0.96rem;
    }

    .tides-summary-grid {
        grid-template-columns: 1fr;
    }

    .tides-hero__summary {
        gap: 0.75rem;
        margin-top: 1rem;
    }

    .tides-hero__stats {
        gap: 0.65rem;
    }

    .tides-stat {
        padding: 0.78rem 0.82rem;
    }

    .tides-stat__label {
        margin-bottom: 0.3rem;
        font-size: 0.93rem;
    }

    .tides-stat__value {
        font-size: 1.25rem;
    }

    .tides-stat__detail {
        font-size: 0.93rem;
        line-height: 1.35;
    }

    .tides-hero__eyebrow {
        font-size: 0.93rem;
    }

    .tides-next-card__label {
        font-size: 0.93rem;
    }

    .tides-next-card {
        padding: 0.95rem 1rem;
    }

    .tides-next-card__time {
        font-size: 1.75rem;
    }

    .tides-next-card__meta,
    .tides-next-card__countdown,
    .tides-next-card__subline {
        font-size: 0.93rem;
    }

    .tides-next-card__daylight {
        font-size: 0.93rem;
    }

    .tides-daylight {
        font-size: 0.93rem;
        padding: 0.45rem 0.75rem;
    }

    .tides-schedule__daylight {
        font-size: 0.93rem;
    }

    .tide-day__entry-daylight {
        font-size: 0.93rem;
    }

    .tide-day__daylight-bar {
        font-size: 0.93rem;
    }

    .tides-section__eyebrow {
        font-size: 0.93rem;
    }

    .tides-summary__label {
        font-size: 0.93rem;
    }

    .tide-day__entry-pill {
        font-size: 0.93rem;
        min-width: 1.5rem;
        height: 1.5rem;
    }

    .tides-section__head,
    .tides-card__header,
    .tide-day__header,
    .tides-station__card {
        display: block;
    }

    .tides-card__badge,
    .tide-day__range {
        margin-top: 0.7rem;
    }

    .tides-card__badge {
        font-size: 0.93rem;
    }

    .tides-schedule__top {
        flex-direction: column;
        align-items: start;
        gap: 0.1rem;
    }

    .tides-schedule__item,
    .tide-day__entry {
        min-height: 2.9rem;
    }

    .tides-station {
        padding-bottom: 1.8rem;
    }

    /* Horizontal scroll carousel for week forecast */
    .tides-week__wrap {
        position: relative;
    }

    .tides-week__wrap::after {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0.5rem;
        width: 2.5rem;
        background: linear-gradient(90deg, transparent, var(--bg));
        pointer-events: none;
        border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
        z-index: 1;
    }

    .tides-week__grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 0.75rem;
        padding-bottom: 0.5rem;
        scrollbar-width: none;
    }

    .tides-week__grid::-webkit-scrollbar {
        display: none;
    }

    .tides-week__grid > .tide-day {
        flex: 0 0 82vw;
        scroll-snap-align: start;
    }

    .tides-section--week .tides-section__note {
        font-size: 0.93rem;
    }

    .tides-week__dots {
        display: flex;
        justify-content: center;
        gap: 0.45rem;
        margin-top: 0.6rem;
    }

    .tides-week__dot {
        width: 0.45rem;
        height: 0.45rem;
        border-radius: 999px;
        background: var(--border);
        transition: background 0.2s, transform 0.2s;
    }

    .tides-week__dot--active {
        background: var(--red);
        transform: scale(1.3);
    }

    /* Mobile font-floor: 0.93rem minimum */
    .tides-card__meta { font-size: 0.93rem; }
    .tides-schedule__type { font-size: 0.93rem; }
    .tides-schedule__meta { font-size: 0.93rem; }
    .tides-summary__detail { font-size: 0.93rem; }
    .tides-fallback__eyebrow { font-size: 0.93rem; }
    .tides-fallback__copy { font-size: 0.93rem; }
    .tides-fallback__item-label { font-size: 0.93rem; }
    .tides-fallback__item-detail { font-size: 0.93rem; }
    .tide-day__date { font-size: 0.93rem; }
    .tide-day__range { font-size: 0.93rem; }
    .tide-day__entry-time { font-size: 0.93rem; }
    .tide-day__entry-height { font-size: 0.93rem; }
    .tide-day__footer { font-size: 0.93rem; }
    .tides-station__copy { font-size: 0.93rem; }
    .tide-chart__axis-label,
    .tide-chart__time-label,
    .tide-chart__time-label--compact,
    .tide-chart__marker-label,
    .tide-chart__marker-height,
    .tide-chart__now-label { font-size: 13px; }
}

/* ==========================================================
   Dark Mode
   Global tokens (--surface, --border, --text, etc.) already
   flip in ehlocal.css. Only tide-specific overrides here.
   ========================================================== */

@media (prefers-color-scheme: dark) {
    .tides-card,
    .tide-chart {
        box-shadow: none;
    }

    .tides-schedule__daylight--light {
        background: rgba(245, 190, 60, 0.12);
        color: #d4b44c;
    }

    .tides-schedule__daylight--dark {
        background: rgba(100, 120, 160, 0.1);
        color: #8b95a3;
    }

    .tide-day__entry-daylight--light {
        color: #d4b44c;
    }

    .tide-day__entry-daylight--dark {
        color: #8b95a3;
    }
}

[data-theme="dark"] .tides-card,
[data-theme="dark"] .tide-chart {
    box-shadow: none;
}

[data-theme="dark"] .tides-schedule__daylight--light {
    background: rgba(245, 190, 60, 0.12);
    color: #d4b44c;
}

[data-theme="dark"] .tides-schedule__daylight--dark {
    background: rgba(100, 120, 160, 0.1);
    color: #8b95a3;
}

[data-theme="dark"] .tide-day__entry-daylight--light {
    color: #d4b44c;
}

[data-theme="dark"] .tide-day__entry-daylight--dark {
    color: #8b95a3;
}
