:root {
  --design-w: 3840;
  --design-h: 2160;
  --bg: #07100d;
  --panel: rgba(12, 28, 23, 0.82);
  --panel-border: rgba(255,255,255,0.18);
  --text: #f3f1e7;
  --muted: rgba(243,241,231,0.72);
}
* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; background: var(--bg); color: var(--text); font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; }
body { overflow: hidden; }
.sr-only { position:absolute !important; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }
.dbdash-topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 10;
  min-height: 44px;
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 8px 14px;
  background: rgba(0,0,0,0.72);
  border-bottom: 1px solid rgba(255,255,255,0.16);
  font-size: 14px;
}
.dbdash-topbar a { color: #f3f1e7; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.4); }
#dbdash-status { color: var(--muted); }
.dbdash-stage-wrap {
  position: fixed;
  inset: 44px 0 0 0;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.dbdash-no-chrome .dbdash-stage-wrap { inset: 0; }
.dbdash-stage {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 3840px;
  height: 2160px;
  transform-origin: center center;
  background:
    radial-gradient(circle at 20% 10%, rgba(255,255,255,0.10), transparent 24%),
    radial-gradient(circle at 75% 25%, rgba(138,181,132,0.16), transparent 28%),
    linear-gradient(145deg, #101c18, #040706 62%, #11110c);
  overflow: hidden;
  box-shadow: 0 18px 80px rgba(0,0,0,0.55);
}
.dbdash-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 240px 240px;
  opacity: 0;
}
.dbdash-debug .dbdash-stage::before { opacity: 1; }
.dbdash-panel {
  position: absolute;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 34px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.40);
  backdrop-filter: blur(12px);
}
.dbdash-panel-label {
  position: absolute;
  left: 28px;
  top: 20px;
  z-index: 999;
  font-size: 28px;
  color: rgba(243,241,231,0.50);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  pointer-events: none;
}
.dbdash-element { position: absolute; overflow: hidden; }
.dbdash-text {
  display: block;
  width: 100%;
  height: 100%;
  color: var(--text);
  line-height: 1.05;
  white-space: normal;
}
.dbdash-text span { max-width: 100%; }
.dbdash-text-inner { display: flex; width: 100%; height: 100%; box-sizing: border-box; padding: 0.18em 0.28em; line-height: 1.05; white-space: nowrap; overflow: hidden; }
.dbdash-background-box { pointer-events: none; }
.dbdash-error {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: min(1200px, 80%);
  padding: 44px;
  border-radius: 28px;
  background: rgba(85, 24, 24, 0.9);
  border: 2px solid rgba(255,255,255,0.25);
  color: #fff;
  font-size: 42px;
  line-height: 1.25;
}


.dbdash-slideshow { border-radius: 18px; background: rgba(8,14,12,0.55); }
.dbdash-slideshow-frame { position: absolute; inset: 0; overflow: hidden; border-radius: inherit; background: linear-gradient(145deg, rgba(13,24,21,0.95), rgba(7,11,10,0.94)); }
.dbdash-slideshow-image { position: absolute; inset: 0; width: 100%; height: 100%; object-position: center center; display: block; }
.dbdash-slideshow-placeholder { position: absolute; inset: 0; display: grid; place-items: center; padding: 1em; text-align: center; color: rgba(255,245,220,0.84); font-size: 2.2rem; font-weight: 600; letter-spacing: 0.02em; background: linear-gradient(145deg, rgba(20,34,30,0.96), rgba(10,14,13,0.98)); }
.dbdash-slideshow-caption { position: absolute; left: 0; right: 0; bottom: 0; padding: 0.65em 0.8em 0.7em; background: linear-gradient(to top, rgba(0,0,0,0.72), rgba(0,0,0,0.12)); color: rgba(255,247,226,0.98); font-weight: 700; font-size: 1.5rem; line-height: 1.05; text-shadow: 0 2px 10px rgba(0,0,0,0.5); }

/* Hide the slideshow loading layer once the first image is ready.
   Author-level display:grid on the placeholder can override the browser's
   built-in [hidden] style, so make this explicit. */
.dbdash-slideshow-placeholder[hidden] { display: none !important; }
.dbdash-slideshow.is-ready .dbdash-slideshow-placeholder { display: none !important; }
.dbdash-slideshow-image { opacity: 0; transition: opacity 420ms ease; }
.dbdash-slideshow.is-ready .dbdash-slideshow-image { opacity: 1; }

.dbdash-clock {
  display: block;
  color: var(--text);
  line-height: 1;
  white-space: nowrap;
}
.dbdash-clock-inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding: 0.12em 0.18em;
  overflow: hidden;
}
.dbdash-clock-time {
  display: block;
  font: inherit;
  line-height: 0.95;
  letter-spacing: -0.035em;
  text-shadow: 0 3px 18px rgba(0,0,0,0.28);
}
.dbdash-clock-date {
  display: block;
  font-style: normal;
  font-size: 0.32em;
  line-height: 1.15;
  opacity: 0.74;
  letter-spacing: 0.02em;
  margin-top: 0.15em;
}
.dbdash-clock-date[hidden] { display: none !important; }


.dbdash-aclock { display: grid; place-items: center; overflow: visible; }
.dbdash-aclock-svg { display: block; overflow: visible; filter: drop-shadow(0 22px 42px rgba(0,0,0,0.34)); }
.dbdash-aclock-face { fill: rgba(7,27,21,var(--gauge-face-opacity, 1)); fill-opacity: 1; stroke: rgba(215,197,138,0.66); stroke-width: 3; }
.dbdash-aclock-inner { fill: rgba(255,255,255,calc(0.025 * var(--gauge-face-opacity, 1))); fill-opacity: 1; stroke: rgba(255,255,255,0.035); stroke-width: 1; }
.dbdash-aclock-glow { fill: rgba(255,255,255,0.075); opacity: var(--gauge-face-opacity, 1); pointer-events: none; }
.dbdash-aclock-svg.light .dbdash-aclock-face { fill: rgba(239,227,179,var(--gauge-face-opacity, 1)); stroke: rgba(70,58,28,0.68); }
.dbdash-aclock-svg.light .dbdash-aclock-inner { fill: rgba(255,255,255,calc(0.32 * var(--gauge-face-opacity, 1))); stroke: rgba(50,42,24,0.09); }
.dbdash-aclock-svg.light .dbdash-aclock-glow { fill: rgba(255,255,255,0.42); }
.dbdash-aclock-num { font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: 19px; font-weight: 850; text-anchor: middle; dominant-baseline: central; fill: rgba(255,245,210,0.93); paint-order: stroke; stroke: rgba(0,0,0,0.20); stroke-width: 0.8px; }
.dbdash-aclock-svg.light .dbdash-aclock-num { fill: rgba(36,31,18,0.92); stroke: rgba(255,255,255,0.28); }
.dbdash-aclock-tick, .dbdash-aclock-minutetick { stroke: rgba(255,245,210,0.62); stroke-linecap: round; }
.dbdash-aclock-tick { stroke-width: 3.2; }
.dbdash-aclock-minutetick { stroke-width: 1.05; opacity: 0.62; }
.dbdash-aclock-minutetick.major { stroke-width: 2.1; opacity: 0.88; }
.dbdash-aclock-svg.light .dbdash-aclock-tick, .dbdash-aclock-svg.light .dbdash-aclock-minutetick { stroke: rgba(40,34,18,0.58); }
.dbdash-aclock-svg.minimal .dbdash-aclock-face { stroke-width: 2; }
.dbdash-aclock-svg.minimal .dbdash-aclock-inner, .dbdash-aclock-svg.minimal .dbdash-aclock-glow { opacity: 0.45; }
.dbdash-aclock-svg.minimal .dbdash-aclock-num { opacity: 0.88; font-size: 17px; }
.dbdash-aclock-svg.classic .dbdash-aclock-face { stroke-width: 4.2; }
.dbdash-aclock-svg.classic .dbdash-aclock-inner { fill: rgba(255,255,255,0.04); }
.dbdash-aclock-svg.classic .dbdash-aclock-num { font-family: Georgia, "Times New Roman", serif; font-size: 18px; font-weight: 800; }
.dbdash-aclock-hand { stroke: rgba(250,245,220,0.97); stroke-linecap: round; filter: drop-shadow(0 2px 5px rgba(0,0,0,0.34)); }
.dbdash-aclock-hour { stroke-width: 7.5; }
.dbdash-aclock-minute { stroke-width: 5.2; }
.dbdash-aclock-second { stroke: #e9b950; stroke-width: 2.4; filter: drop-shadow(0 0 5px rgba(233,185,80,0.42)); }
.dbdash-aclock-svg.light .dbdash-aclock-hand { stroke: rgba(42,35,18,0.88); }
.dbdash-aclock-svg.light .dbdash-aclock-second { stroke: #a93424; }
.dbdash-aclock-pin { fill: #e6d08f; stroke: rgba(0,0,0,0.18); stroke-width: 1.2; filter: drop-shadow(0 3px 6px rgba(0,0,0,0.36)); }
.dbdash-aclock-svg.light .dbdash-aclock-pin { fill: #8f7334; }

/* Refined analog clock: thinner, more elegant hands/marks with flatter ends. */
.dbdash-aclock-face { stroke-width: 2.2; }
.dbdash-aclock-inner { fill: rgba(255,255,255,0.018); stroke: rgba(255,255,255,0.028); stroke-width: 0.8; }
.dbdash-aclock-glow { fill: rgba(255,255,255,0.055); }
.dbdash-aclock-num { font-size: 17px; font-weight: 760; }
.dbdash-aclock-minutetick { stroke-linecap: butt; stroke-width: 0.75; opacity: 0.48; }
.dbdash-aclock-minutetick.major { stroke-width: 1.55; opacity: 0.72; }
.dbdash-aclock-hand { stroke-linecap: butt; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.28)); }
.dbdash-aclock-hour { stroke-width: 5.6; }
.dbdash-aclock-minute { stroke-width: 3.7; }
.dbdash-aclock-second { stroke-width: 1.45; filter: drop-shadow(0 0 5px rgba(233,185,80,0.34)); }
.dbdash-aclock-pin { r: 6.5; }
.dbdash-aclock-svg.minimal .dbdash-aclock-face { stroke-width: 1.55; }
.dbdash-aclock-svg.minimal .dbdash-aclock-num { font-size: 15.5px; font-weight: 720; }
.dbdash-aclock-svg.classic .dbdash-aclock-face { stroke-width: 3; }
.dbdash-aclock-svg.classic .dbdash-aclock-num { font-size: 16px; }

.dbdash-weather { display: block; color: var(--text); line-height: 1.05; }
.dbdash-weather-inner { width: 100%; height: 100%; display: flex; gap: 0.38em; padding: 0.18em 0.28em; box-sizing: border-box; overflow: hidden; }
.dbdash-weather-inner.label_above { flex-direction: column; gap: 0.08em; }
.dbdash-weather-label { font-style: normal; opacity: 0.72; font-size: 0.42em; letter-spacing: 0.03em; text-transform: uppercase; white-space: nowrap; }
.dbdash-weather-value { font-size: 1em; line-height: 1; white-space: nowrap; }
.dbdash-weather-sparkline { display: block; color: var(--text); line-height: 1.05; }
.dbdash-weather-sparkline-inner { width: 100%; height: 100%; display: flex; gap: 0.38em; padding: 0.18em 0.28em; box-sizing: border-box; overflow: hidden; }
.dbdash-weather-sparkline-inner.label_above { flex-direction: row; }
.dbdash-weather-sparkline-wrap { flex: 0 1 34%; min-width: 1.8em; height: 0.86em; align-self: center; display: inline-flex; align-items: center; }
.dbdash-weather-sparkline-svg { width: 100%; height: 100%; display: block; overflow: visible; }
.dbdash-weather-sparkline-line { stroke-width: 4; stroke-linecap: round; stroke-linejoin: round; filter: drop-shadow(0 2px 7px rgba(0,0,0,0.28)); }
.dbdash-weather-sparkline-fill { opacity: 0.95; }
.dbdash-weather-sparkline-wrap[hidden] { display: none !important; }


/* Weather text sizing should remain consistent for the same configured font size. */
.dbdash-weather-inner, .dbdash-weather-sparkline-inner { min-width: 0; }
.dbdash-weather-label, .dbdash-weather-value { flex: 0 0 auto; }

/* Refine analog clock hands: around two-thirds of the previous thickness. */
.dbdash-aclock-hour { stroke-width: 3.7; }
.dbdash-aclock-minute { stroke-width: 2.45; }
.dbdash-aclock-second { stroke-width: 1.0; }
.dbdash-aclock-pin { r: 5.4; }

/* Weather observation graph element */
.dbdash-text-inner.rotate-left,
.dbdash-text-inner.rotate-right { transform-origin: center center; align-self: center; justify-self: center; }
.dbdash-text-inner.rotate-left { transform: rotate(-90deg); }
.dbdash-text-inner.rotate-right { transform: rotate(90deg); }
.dbdash-weather-graph { color: var(--text); overflow: visible; }
.dbdash-weather-graph-svg { width: 100%; height: 100%; display: block; overflow: visible; }
.dbdash-graph-loading { width: 100%; height: 100%; display: grid; place-items: center; color: rgba(243,241,231,0.72); font-size: 28px; font-weight: 650; }
.dbdash-graph-title { fill: rgba(255,246,232,0.94); font-size: 26px; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; }
.dbdash-graph-grid { stroke: rgba(255,246,232,0.16); stroke-width: 1; }
.dbdash-graph-grid.v { stroke: rgba(255,246,232,0.10); }
.dbdash-graph-grid.v.minor { stroke: rgba(255,246,232,0.07); }
.dbdash-graph-grid.v.major { stroke: rgba(255,246,232,0.13); }
.dbdash-graph-axis { fill: rgba(255,246,232,0.70); font-size: 18px; font-weight: 650; }
.dbdash-graph-extreme-line { stroke-width: 1.4; stroke-dasharray: 2 4; opacity: 0.84; }
.dbdash-graph-extreme-dot { stroke: rgba(0,0,0,0.32); stroke-width: 1.4; }
.dbdash-graph-extreme-label { font-size: 17px; font-weight: 800; letter-spacing: 0.08em; paint-order: stroke; stroke: rgba(0,0,0,0.34); stroke-width: 3px; stroke-linejoin: round; }
.dbdash-graph-extreme-label.time { letter-spacing: 0.10em; }
.dbdash-graph-line { stroke-linecap: round; stroke-linejoin: round; filter: drop-shadow(0 2px 10px rgba(235,179,77,0.20)); }
.dbdash-graph-under { stroke-linecap: round; stroke-linejoin: round; opacity: 0.48; }
.dbdash-graph-area { opacity: 0.9; mix-blend-mode: screen; }
.dbdash-graph-dot { fill: rgba(255,243,224,0.95); stroke: rgba(0,0,0,0.32); stroke-width: 2; }

/* Animated wind indicator element */

.dbdash-wind-arrow-graph { color: var(--text); overflow: hidden; }
.dbdash-wind-arrow-graph-svg { width: 100%; height: 100%; display: block; overflow: hidden; }
.dbdash-wind-arrow-graph-svg.label-small .dbdash-graph-axis { font-size: 18px; }
.dbdash-wind-arrow-graph-svg.label-medium .dbdash-graph-axis { font-size: 26px; }
.dbdash-wind-arrow-graph-svg.label-large .dbdash-graph-axis { font-size: 38px; }
.dbdash-wind-arrow-graph-svg.label-small .dbdash-graph-title,
.dbdash-wind-arrow-graph-svg.label-small .dbdash-wind-now-label { font-size: 22px; }
.dbdash-wind-arrow-graph-svg.label-medium .dbdash-graph-title,
.dbdash-wind-arrow-graph-svg.label-medium .dbdash-wind-now-label { font-size: 31px; }
.dbdash-wind-arrow-graph-svg.label-large .dbdash-graph-title,
.dbdash-wind-arrow-graph-svg.label-large .dbdash-wind-now-label { font-size: 46px; }
.dbdash-wind-arrow-graph .dbdash-wind-now-label { fill: rgba(255,246,232,0.9); font-weight: 900; paint-order: stroke; stroke: rgba(0,0,0,0.34); stroke-width: 2.4; stroke-linejoin: round; }
.dbdash-wind-arrow-graph .dbdash-wind-unit-label { fill: rgba(255,246,232,0.72); font-weight: 900; paint-order: stroke; stroke: rgba(0,0,0,0.24); stroke-width: 1.2; stroke-linejoin: round; }
.dbdash-wind-arrow-graph .dbdash-graph-grid { stroke: rgba(255,246,232,0.12); }
.dbdash-wind-arrow-graph .dbdash-graph-grid.major { stroke: rgba(255,246,232,0.18); }
.dbdash-wind-gust-area { fill: rgba(255,196,58,0.44); mix-blend-mode: screen; filter: drop-shadow(0 0 18px rgba(255,210,88,.34)); }
.dbdash-wind-gust-line { fill: none; stroke: rgba(255,231,96,1); stroke-width: 5.6; stroke-linecap: round; stroke-linejoin: round; filter: drop-shadow(0 3px 8px rgba(0,0,0,.68)) drop-shadow(0 0 16px rgba(255,218,95,.48)); }
.dbdash-wind-speed-area { fill: rgba(86,190,255,0.30); }
.dbdash-wind-speed-line { fill: none; stroke: rgba(116,211,255,0.99); stroke-width: 13.5; stroke-linecap: round; stroke-linejoin: round; filter: drop-shadow(0 4px 9px rgba(0,0,0,.44)); }
.dbdash-wind-dir-arrow path { fill: none; stroke-linecap: round; stroke-linejoin: round; }
.dbdash-wind-dir-outline { stroke: rgba(0,0,0,0.76); stroke-width: calc(var(--wind-arrow-stroke, 10) + 7.5); }
.dbdash-wind-dir-line { stroke: rgba(255,255,255,0.78); stroke-width: var(--wind-arrow-stroke, 10); filter: drop-shadow(0 3px 7px rgba(0,0,0,.52)); }
.dbdash-wind-dir-arrow.band-calm .dbdash-wind-dir-line { stroke: rgba(101,226,126,0.92); }
.dbdash-wind-dir-arrow.band-light .dbdash-wind-dir-line { stroke: rgba(165,237,92,0.94); }
.dbdash-wind-dir-arrow.band-moderate .dbdash-wind-dir-line { stroke: rgba(255,232,92,0.96); }
.dbdash-wind-dir-arrow.band-fresh .dbdash-wind-dir-line { stroke: rgba(255,165,62,0.97); }
.dbdash-wind-dir-arrow.band-strong .dbdash-wind-dir-line { stroke: rgba(255,78,64,0.98); }
.dbdash-wind-dir-arrow.now .dbdash-wind-dir-outline { stroke: rgba(0,0,0,0.80); stroke-width: calc(var(--wind-arrow-stroke, 10) + 9); }
.dbdash-wind-dir-arrow.now .dbdash-wind-dir-line { stroke-width: calc(var(--wind-arrow-stroke, 10) + 2.4); filter: drop-shadow(0 0 13px rgba(255,238,150,.50)) drop-shadow(0 4px 7px rgba(0,0,0,.48)); }
.dbdash-graph-baseline { stroke: rgba(255,246,232,0.4); stroke-width: 2; }

.dbdash-wind-indicator { display: grid; place-items: center; overflow: visible; color: var(--text); }
.dbdash-wind-svg { width: 100%; height: 100%; max-width: 100%; max-height: 100%; display: block; overflow: visible; filter: drop-shadow(0 20px 42px rgba(0,0,0,0.34)); }
.dbdash-wind-face { fill: rgba(5,20,17,calc(0.96 * var(--gauge-face-opacity, 1))); fill-opacity: 1; stroke: rgba(215,197,138,0.62); stroke-width: 2.4; }
.dbdash-wind-face-glow { opacity: var(--gauge-face-opacity, 1); pointer-events: none; }
.dbdash-wind-ring { fill: none; stroke: rgba(255,246,232,0.16); stroke-width: 1.1; }
.dbdash-wind-ring-label { font-size: 8px; fill: rgba(255,246,232,0.42); dominant-baseline: middle; }
.dbdash-wind-cross { stroke: rgba(255,246,232,0.12); stroke-width: 0.85; }
.dbdash-wind-history { stroke: rgba(118,211,255,0.74); stroke-width: 3.2; stroke-linecap: round; }
.dbdash-wind-cardinal { font-size: 15px; font-weight: 850; text-anchor: middle; dominant-baseline: central; fill: rgba(255,246,232,0.86); paint-order: stroke; stroke: rgba(0,0,0,0.28); stroke-width: 0.8; }
.dbdash-wind-needle-shadow { stroke: rgba(0,0,0,0.46); stroke-width: 10; stroke-linecap: round; }
.dbdash-wind-needle-line { stroke: #ffd36c; stroke-width: 6.2; stroke-linecap: round; filter: drop-shadow(0 0 8px rgba(255,184,75,0.35)); }
.dbdash-wind-tip { fill: #fff1c4; stroke: rgba(0,0,0,0.25); stroke-width: 1; }
.dbdash-wind-pin { fill: #e6d08f; stroke: rgba(0,0,0,0.26); stroke-width: 1.2; filter: drop-shadow(0 3px 7px rgba(0,0,0,0.36)); }
.dbdash-wind-readout { position: absolute; left: 50%; bottom: 9%; transform: translateX(-50%); display: inline-flex; align-items: baseline; gap: .18em; padding: .12em .48em; border-radius: 999px; background: rgba(0,0,0,0.26); color: rgba(255,246,232,0.92); letter-spacing: .03em; white-space: nowrap; }
.dbdash-wind-readout strong { font-size: 1.9em; line-height: 1; }
.dbdash-wind-readout span { font-weight: 800; }
.dbdash-wind-readout em { opacity: .66; font-style: normal; font-weight: 700; margin-left: .4em; }
.dbdash-weather-graph-svg.label-small .dbdash-graph-axis,
.dbdash-weather-graph-svg.label-small .dbdash-graph-extreme-label { font-size: 13px; }
.dbdash-weather-graph-svg.label-medium .dbdash-graph-axis,
.dbdash-weather-graph-svg.label-medium .dbdash-graph-extreme-label { font-size: 17px; }
.dbdash-weather-graph-svg.label-large .dbdash-graph-axis,
.dbdash-weather-graph-svg.label-large .dbdash-graph-extreme-label { font-size: 23px; }

/* Panel appearance is controlled per placed panel by inline styles from the layout editor. */
.dbdash-aclock.transparent-outer,
.dbdash-wind-indicator.transparent-outer {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}
.dbdash-aclock.transparent-outer .dbdash-aclock-svg,
.dbdash-wind-indicator.transparent-outer .dbdash-wind-svg {
  overflow: visible;
}

/* Public /gallery/ display and clean preview should not show admin panel labels. */
.dbdash-no-chrome:not(.dbdash-debug) .dbdash-panel-label {
  display: none !important;
}

/* Static image/logo element. Transparent PNGs keep their alpha channel. */
.dbdash-static-image {
  display: block;
  background: rgba(8,14,12,0.18);
  border-radius: 12px;
}
.dbdash-static-image.transparent-bg { background: transparent; }
.dbdash-static-image img {
  width: 100%;
  height: 100%;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}
.dbdash-image-missing {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(255,245,220,0.72);
  font-weight: 700;
  font-size: 28px;
  border: 2px dashed rgba(255,255,255,0.18);
  border-radius: inherit;
}


.dbdash-clock:not(.is-fitted) {
  visibility: hidden;
}


/* Featured SmugMug Bird element */
.dbdash-featured-bird {
  overflow: hidden;
  background: #b79b6b;
  border: 0 !important;
  box-shadow: none !important;
}
.dbdash-featured-bird::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(circle at 50% 38%, rgba(255,248,220,0.12), transparent 34%), linear-gradient(145deg, rgba(20,28,19,0.54), rgba(7,11,9,0.66));
  opacity: 0;
  transition: opacity 520ms ease;
}
.dbdash-featured-bird.is-loading::before,
.dbdash-featured-bird.is-error::before {
  opacity: 1;
}
.dbdash-featured-bird-img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  object-position: center center;
  user-select: none;
  -webkit-user-drag: none;
  opacity: 0;
  transition: opacity 900ms ease;
}
.dbdash-featured-bird.is-ready .dbdash-featured-bird-img {
  opacity: 1;
}
.dbdash-featured-bird-placeholder {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  color: rgba(255,248,230,0.84);
  font-size: 34px;
  font-weight: 750;
  letter-spacing: 0.02em;
  opacity: 1;
  transition: opacity 420ms ease;
}
.dbdash-featured-bird.is-ready .dbdash-featured-bird-placeholder {
  opacity: 0;
}
.dbdash-featured-bird-placeholder[hidden] {
  display: none !important;
}
.dbdash-featured-bird-text {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 7% 6% 4.5%;
  background: linear-gradient(to top, rgba(0,0,0,0.76), rgba(0,0,0,0.34) 58%, rgba(0,0,0,0));
  color: rgba(255,248,232,0.96);
  pointer-events: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 680ms ease, transform 680ms ease;
}
.dbdash-featured-bird.is-text-ready .dbdash-featured-bird-text {
  opacity: 1;
  transform: translateY(0);
}
.dbdash-featured-bird-copy {
  margin: 0;
  max-width: 86%;
  white-space: normal;
  font-family: inherit;
  line-height: 1.12;
  letter-spacing: 0.01em;
  text-shadow: 0 3px 12px rgba(0,0,0,0.72);
}
.dbdash-featured-bird-name {
  font-weight: 820;
  line-height: 1.02;
}
.dbdash-featured-bird-scientific {
  margin-top: 0.12em;
  font-style: italic;
  font-weight: 520;
  line-height: 1.04;
  opacity: 0.93;
}
.dbdash-featured-bird-summary {
  margin-top: 0.42em;
  max-width: 78ch;
  font-weight: 640;
  line-height: 1.18;
  opacity: 0.96;
}
.dbdash-featured-bird.text-small .dbdash-featured-bird-name { font-size: 50px; }
.dbdash-featured-bird.text-medium .dbdash-featured-bird-name { font-size: 72px; }
.dbdash-featured-bird.text-large .dbdash-featured-bird-name { font-size: 98px; }
.dbdash-featured-bird.text-small .dbdash-featured-bird-scientific { font-size: 32px; }
.dbdash-featured-bird.text-medium .dbdash-featured-bird-scientific { font-size: 46px; }
.dbdash-featured-bird.text-large .dbdash-featured-bird-scientific { font-size: 62px; }
.dbdash-featured-bird.text-small .dbdash-featured-bird-summary { font-size: 27px; }
.dbdash-featured-bird.text-medium .dbdash-featured-bird-summary { font-size: 36px; }
.dbdash-featured-bird.text-large .dbdash-featured-bird-summary { font-size: 48px; }

/* Optional centre pointer showing where the wind is blowing to */
.dbdash-wind-blow-pointer polygon {
  fill: #e6d08f;
  stroke: rgba(0,0,0,0.32);
  stroke-width: 1.4;
  filter: drop-shadow(0 3px 7px rgba(0,0,0,0.42));
}

/* Wind rose dashboard element */
.dbdash-windrose {
  display: grid;
  place-items: center;
  overflow: hidden;
}
.dbdash-windrose-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}
.dbdash-windrose-ring,
.dbdash-windrose-axis {
  fill: none;
  stroke: rgba(238, 230, 193, 0.20);
  stroke-width: 1.1;
}
.dbdash-windrose-bar {
  opacity: 0.92;
}
.dbdash-windrose-bar.band-light { fill: rgba(118, 215, 208, 0.74); stroke: rgba(207, 255, 251, 0.50); }
.dbdash-windrose-bar.band-medium { fill: rgba(122, 199, 255, 0.78); stroke: rgba(213, 239, 255, 0.56); }
.dbdash-windrose-bar.band-fresh { fill: rgba(242, 198, 109, 0.82); stroke: rgba(255, 234, 171, 0.56); }
.dbdash-windrose-bar.band-strong { fill: rgba(255, 138, 107, 0.86); stroke: rgba(255, 211, 197, 0.62); }
.dbdash-windrose-centre {
  fill: #e6d08f;
  stroke: rgba(0,0,0,.36);
  stroke-width: 1.4;
}
.dbdash-windrose-label {
  fill: rgba(248, 238, 199, 0.94);
  font-weight: 850;
  font-size: 24px;
}
.dbdash-windrose-svg.label-small .dbdash-windrose-label { font-size: 18px; }
.dbdash-windrose-svg.label-large .dbdash-windrose-label { font-size: 34px; }
.dbdash-windrose-legend {
  fill: rgba(248, 238, 199, 0.72);
  font-size: 22px;
  font-weight: 650;
}
.dbdash-windrose-svg.label-small .dbdash-windrose-legend { font-size: 17px; }
.dbdash-windrose-svg.label-large .dbdash-windrose-legend { font-size: 30px; }

/* Video dashboard element */
.dbdash-video {
  display: grid;
  place-items: stretch;
  overflow: hidden;
  background: rgba(0,0,0,0.35);
}
.dbdash-video-player {
  width: 100%;
  height: 100%;
  display: block;
  background: #000;
}
.dbdash-video-missing,
.dbdash-video-error {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  color: rgba(250, 241, 202, 0.82);
  font-weight: 800;
  text-align: center;
  background: rgba(0,0,0,0.42);
}
.dbdash-video.is-error .dbdash-video-player {
  opacity: 0.24;
}

/* Earth, Moon & Stars dashboard element */
.dbdash-earthmoon {
  border-radius: 18px;
  background: radial-gradient(circle at 50% 42%, rgba(28,58,88,0.62), rgba(2,4,10,0.96) 68%);
  box-shadow: inset 0 0 70px rgba(0,0,0,0.42);
}
.dbdash-earthmoon.transparent-bg { background: transparent; box-shadow: none; }
.dbdash-earthmoon-canvas { width: 100%; height: 100%; display: block; }
.dbdash-earthmoon-fallback { width: 100%; height: 100%; display: grid; place-items: center; color: rgba(255,246,220,0.78); font-size: 28px; font-weight: 700; }
