:root {
  color-scheme: dark;
  --green: #041615;
  --cream: #f7f5f2;
  --gold: #ffffff;
  --muted: rgba(247, 245, 242, 0.62);
  --muted-soft: rgba(247, 245, 242, 0.42);
  --line: rgba(255, 255, 255, 0.18);
  --line-strong: rgba(255, 255, 255, 0.46);
  --surface: rgba(247, 245, 242, 0.035);
  --surface-strong: rgba(0, 0, 0, 0.18);
  --route: #7b1e2b;
  --route-glow: rgba(123, 30, 43, 0.3);
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

body {
  margin: 0;
  background: var(--green);
  color: var(--cream);
  font-family: Inter, sans-serif;
}

button,
input {
  font: inherit;
}

.cv-dashboard {
  height: 100vh;
  padding: 1rem 1.2vw;
  overflow: hidden;
  background: var(--green);
}

.cv-db-shell {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 0.75rem;
  height: 100%;
  max-width: 1560px;
  margin: 0 auto;
}

.cv-db-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: end;
  margin-bottom: 0;
}

.cv-db-kicker {
  margin-bottom: 0;
  color: var(--gold);
  font-family: Helvetica, Arial, sans-serif;
  font-size: clamp(1.15rem, 1.8vw, 1.75rem);
  font-weight: 300;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cv-db-title {
  margin: 0;
  font-size: clamp(3rem, 7vw, 6.8rem);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: -0.065em;
}

.cv-db-title em {
  font-family: "Didot", "Bodoni Moda", serif;
  font-style: italic;
  font-weight: 500;
}

.cv-db-subtitle {
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.95rem, 1.15vw, 1.08rem);
  font-weight: 300;
  line-height: 1.7;
}

.cv-map-section {
  display: grid;
  grid-template-columns: minmax(255px, 20%) minmax(0, 1fr);
  gap: 0.75rem;
  align-items: stretch;
  min-height: 0;
  margin-bottom: 0;
}

.cv-control-card,
.cv-map-card,
.cv-db-section {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.cv-control-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.72rem;
  min-height: 0;
  padding: 0.8rem;
}

.cv-map-card {
  position: relative;
  min-height: 0;
  overflow: hidden;
}

#map {
  width: 100%;
  height: 100%;
  min-height: 0;
  background: #0c2321;
}

.cv-map-info-block {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 450;
  display: flex;
  gap: 0.54rem;
  align-items: center;
  min-width: 0;
  padding: 0.48rem 0.56rem;
  border: 1px solid rgba(247, 245, 242, 0.18);
  border-radius: 12px;
  background: rgba(4, 22, 21, 0.88);
  backdrop-filter: blur(14px);
  color: rgba(247, 245, 242, 0.76);
  font-size: 0.52rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cv-scale-graphic {
  position: relative;
  width: 72px;
  flex: 0 0 72px;
  padding-bottom: 0.32rem;
  color: var(--gold);
  text-align: center;
}

.cv-scale-graphic::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 6px;
  border-left: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
}

.cv-weather-overlay {
  position: fixed;
  top: 1rem;
  right: 2.4vw;
  bottom: 1rem;
  left: min(390px, calc(2.4vw + 356px));
  z-index: 470;
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid rgba(247, 245, 242, 0.18);
  border-radius: 18px;
  background: rgba(4, 22, 21, 0.92);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.36);
}

.cv-weather-overlay[hidden] {
  display: none;
}

.cv-weather-head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) 34px;
  gap: 0.75rem;
  align-items: center;
  padding: 0.75rem;
  border-bottom: 1px solid var(--line);
}

.cv-weather-head strong {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.cv-weather-tabs {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
}

.cv-weather-tabs button,
.cv-weather-close,
.cv-weather-tab {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.14);
  color: rgba(247, 245, 242, 0.76);
  cursor: pointer;
}

.cv-weather-tabs button {
  min-height: 34px;
  padding: 0 0.7rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cv-weather-tabs button.is-active,
.cv-weather-tab.is-active {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.14);
  color: var(--gold);
}

.cv-weather-close {
  width: 34px;
  height: 34px;
  color: var(--gold);
  font-size: 1.2rem;
}

.cv-weather-overlay iframe {
  width: 100%;
  height: 100%;
  border: 0;
  background: #0c2321;
}

.cv-weather-link {
  padding: 0.48rem 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(247, 245, 242, 0.52);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: right;
  text-decoration: none;
  text-transform: uppercase;
}

.cv-weather-link:hover {
  color: var(--gold);
}

.cv-db-section {
  margin-top: 0;
  padding: 0.7rem;
}

.cv-db-section-title {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 0.2rem 0.25rem 0.5rem;
}

.cv-db-section-title.compact {
  padding-bottom: 0.35rem;
}

.cv-db-section-title h2 {
  margin: 0;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.cv-db-section-title span {
  color: var(--muted-soft);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cv-search {
  display: grid;
  gap: 0.42rem;
}

.cv-search label,
.cv-layer-list h2,
.cv-mode-panel h2,
.cv-services-panel h2 {
  color: var(--muted-soft);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.cv-mode-panel {
  display: grid;
  gap: 0.42rem;
}

.cv-mode-panel,
.cv-search,
.cv-actions,
.cv-layer-list,
.cv-services-panel {
  flex: 0 0 auto;
}

.cv-mode-panel h2 {
  margin: 0;
}

.cv-mode-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.42rem;
}

.cv-mode-button {
  display: flex;
  gap: 0.45rem;
  align-items: center;
  justify-content: center;
  min-width: 0;
  height: 35px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.14);
  color: rgba(247, 245, 242, 0.76);
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 750;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.cv-mode-button:hover,
.cv-mode-button.is-active {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.14);
  color: var(--gold);
}

.cv-mode-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
  opacity: 0.92;
}

.cv-weather-tab {
  display: flex;
  gap: 0.55rem;
  align-items: center;
  justify-content: flex-start;
  min-height: 35px;
  padding: 0 0.75rem;
  color: var(--gold);
  font-weight: 750;
}

.cv-inline-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.cv-services-panel {
  display: grid;
  gap: 0.48rem;
  padding-top: 0.58rem;
  border-top: 1px solid var(--line);
}

.cv-services-panel h2 {
  margin: 0;
}

.cv-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.42rem;
}

.cv-service-button {
  display: flex;
  gap: 0.25rem;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  min-width: 0;
  padding: 0 0.25rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.14);
  color: rgba(247, 245, 242, 0.76);
  cursor: pointer;
  font-size: 0.66rem;
  font-weight: 750;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.cv-service-button:hover,
.cv-service-button.is-active {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.14);
  color: var(--gold);
}

.cv-google-pin {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  color: white;
  font-size: 0.62rem;
  font-weight: 900;
}

.cv-google-pin.lodging {
  background: #4285f4;
}

.cv-google-pin.pharmacy {
  background: #db4437;
}

.cv-search-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44px;
  gap: 0.5rem;
}

.cv-search input,
.cv-search button,
.cv-action-button {
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.14);
  color: var(--cream);
}

.cv-search input {
  min-width: 0;
  padding: 0 0.8rem;
}

.cv-search input::placeholder {
  color: rgba(247, 245, 242, 0.38);
}

.cv-search button,
.cv-action-button {
  cursor: pointer;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.cv-search button:hover,
.cv-action-button:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  background: rgba(247, 245, 242, 0.045);
}

.cv-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.42rem;
}

.cv-action-button {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  justify-content: flex-start;
  padding: 0 0.6rem;
  font-size: 0.76rem;
  font-weight: 700;
}

.primary-action {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.16);
  color: var(--gold);
}

.cv-action-button.is-ready {
  border-color: rgba(255, 255, 255, 0.32);
  color: var(--gold);
}

.cv-layer-list {
  display: grid;
  gap: 0.45rem;
  padding-top: 0.58rem;
  border-top: 1px solid var(--line);
}

.cv-layer-list h2 {
  margin: 0;
}

.cv-switch-row {
  display: flex;
  gap: 0.65rem;
  align-items: center;
  min-height: 24px;
  color: rgba(247, 245, 242, 0.76);
  font-size: 0.78rem;
}

.cv-base-layers {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.35rem;
}

.cv-base-layers button {
  min-width: 0;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.14);
  color: rgba(247, 245, 242, 0.68);
  cursor: pointer;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cv-base-layers button.is-active,
.cv-base-layers button:hover {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.14);
  color: var(--gold);
}

.cv-switch-row input {
  width: 18px;
  height: 18px;
  accent-color: var(--gold);
}

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

.cv-metric {
  min-height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 0.52rem 0.4rem;
  background: rgba(0, 0, 0, 0.12);
}

.cv-metric strong {
  display: block;
  color: var(--gold);
  font-size: clamp(1.08rem, 1.45vw, 1.52rem);
  font-weight: 650;
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.cv-metric span {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.cv-status {
  margin: 0;
  color: rgba(247, 245, 242, 0.56);
  font-size: 0.68rem;
  line-height: 1.35;
}

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

.cv-route-card {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.12);
  transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

.cv-route-card {
  min-height: 190px;
  padding: 1rem;
  text-align: left;
  color: inherit;
  cursor: pointer;
}

.cv-route-card:hover,
.cv-route-card.is-active {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  background: rgba(247, 245, 242, 0.045);
}

.cv-route-card.is-active {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3);
}

.cv-route-card small {
  color: var(--gold);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cv-route-card h3 {
  margin: 0.8rem 0 0.85rem;
  font-family: "Didot", "Bodoni Moda", serif;
  font-size: 1.55rem;
  font-weight: 500;
  line-height: 1;
}

.cv-route-card p {
  margin: 0;
  color: rgba(247, 245, 242, 0.5);
  font-size: 0.76rem;
  line-height: 1.45;
}

.cv-route-data {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  padding-top: 0.65rem;
  color: rgba(247, 245, 242, 0.5);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cv-route-data strong {
  color: var(--gold);
  letter-spacing: 0;
  text-transform: none;
  white-space: nowrap;
}

.cv-tech-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.55fr);
  gap: 1rem;
}

.cv-profile-card,
.cv-tech-metrics-card {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.14);
}

.cv-profile-card {
  display: grid;
  align-items: center;
  padding: 0.85rem 1rem 0.75rem;
}

.cv-profile-inner {
  width: 97.5%;
  margin: 0 auto;
}

.cv-profile-wrap {
  position: relative;
  height: clamp(230px, 24vw, 310px);
  overflow: hidden;
  touch-action: pan-y;
}

.cv-profile-wrap svg {
  display: block;
  width: 100%;
  height: 100%;
}

.cv-axis-label {
  fill: rgba(247, 245, 242, 0.54);
  font-family: Inter, sans-serif;
  font-size: 3.15px;
  font-weight: 700;
}

.cv-axis-label-gold {
  fill: rgba(255, 255, 255, 0.9);
}

.cv-grid {
  stroke: rgba(247, 245, 242, 0.12);
  stroke-width: 0.34;
  vector-effect: non-scaling-stroke;
}

.cv-grid-strong {
  stroke: rgba(247, 245, 242, 0.22);
  stroke-width: 0.42;
  vector-effect: non-scaling-stroke;
}

.cv-route-area {
  fill: rgba(255, 255, 255, 0.04);
}

.cv-profile-route-line {
  animation: cvRouteDraw 1.7s cubic-bezier(0.2, 0.7, 0.2, 1) forwards 0.2s;
  fill: none;
  stroke: var(--gold);
  stroke-dasharray: 900;
  stroke-dashoffset: 900;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 0.62;
  vector-effect: non-scaling-stroke;
}

.cv-ref-dot {
  fill: #041615;
  stroke: rgba(255, 255, 255, 0.75);
  stroke-width: 0.52;
  vector-effect: non-scaling-stroke;
}

.cv-ref-dot-key {
  fill: #041615;
  stroke: var(--gold);
  stroke-width: 0.82;
  vector-effect: non-scaling-stroke;
}

.cv-hover-line {
  opacity: 0;
  stroke: rgba(247, 245, 242, 0.42);
  stroke-width: 0.42;
  vector-effect: non-scaling-stroke;
}

.cv-hover-dot {
  opacity: 0;
  fill: var(--gold);
  stroke: #041615;
  stroke-width: 0.65;
  vector-effect: non-scaling-stroke;
}

.cv-profile-wrap.is-active .cv-hover-line,
.cv-profile-wrap.is-active .cv-hover-dot {
  opacity: 1;
}

.cv-tooltip {
  position: absolute;
  left: 12px;
  top: 12px;
  min-width: 165px;
  padding: 0.62rem 0.72rem;
  border: 1px solid rgba(247, 245, 242, 0.18);
  border-radius: 12px;
  background: rgba(4, 22, 21, 0.88);
  backdrop-filter: blur(14px);
  color: rgba(247, 245, 242, 0.72);
  font-size: 0.72rem;
  line-height: 1.4;
  opacity: 0;
  pointer-events: none;
  transform: translateY(4px);
  transition: 0.18s ease;
}

.cv-profile-wrap.is-active .cv-tooltip {
  opacity: 1;
  transform: translateY(0);
}

.cv-tooltip strong {
  display: block;
  margin-bottom: 0.12rem;
  color: var(--cream);
  font-size: 0.82rem;
}

.cv-tech-metrics-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  padding: 1rem;
}

.cv-tech-metric {
  min-height: 118px;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.12);
}

.cv-tech-metric strong {
  display: block;
  color: var(--gold);
  font-size: clamp(1.8rem, 2.7vw, 2.85rem);
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.cv-tech-metric span {
  display: block;
  margin-top: 0.55rem;
  color: rgba(247, 245, 242, 0.46);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.cv-resource-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 0.55rem;
}

.cv-resource-card {
  min-height: 76px;
  padding: 0.58rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.12);
  transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

.cv-resource-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(247, 245, 242, 0.045);
}

.cv-resource-card strong {
  display: block;
  margin-bottom: 0.42rem;
  color: var(--gold);
  font-size: 1.02rem;
  font-weight: 550;
  letter-spacing: -0.045em;
  line-height: 0.95;
}

.cv-resource-card span {
  display: block;
  color: rgba(247, 245, 242, 0.76);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 1.14;
}

.cv-resource-card p {
  margin: 0.36rem 0 0;
  color: rgba(247, 245, 242, 0.48);
  font-size: 0.56rem;
  line-height: 1.24;
}

.cv-stage-strip {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.65rem;
  align-items: stretch;
}

.cv-stage-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 145px;
  height: 100%;
  padding: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.12);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.cv-stage-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.42);
}

.cv-stage-card small {
  color: var(--gold);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cv-stage-card h3 {
  margin: 0.65rem 0 0.75rem;
  font-size: 1rem;
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.cv-stage-data {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(247, 245, 242, 0.5);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cv-stage-data strong {
  color: var(--gold);
  letter-spacing: 0;
  text-transform: none;
  white-space: nowrap;
}

.cv-db-note {
  max-width: 900px;
  margin: 1.25rem auto 0;
  color: rgba(247, 245, 242, 0.42);
  font-size: 0.78rem;
  font-weight: 300;
  line-height: 1.6;
  text-align: center;
}

@keyframes cvRouteDraw {
  to {
    stroke-dashoffset: 0;
  }
}

.cv-metric strong {
  font-size: clamp(0.92rem, 1.2vw, 1.22rem);
}

.cv-metric span {
  font-size: 0.5rem;
}

.cv-status {
  margin: 0;
}

.marker-popup {
  display: grid;
  gap: 0.5rem;
  min-width: 190px;
}

.marker-popup button {
  height: 34px;
  border: 0;
  border-radius: 10px;
  background: var(--green);
  color: var(--gold);
  cursor: pointer;
}

.cv-route-line {
  filter: drop-shadow(0 0 7px var(--route-glow));
}

.cv-service-marker span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 2px solid white;
  border-radius: 50% 50% 50% 0;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.34);
  color: white;
  font-size: 0.75rem;
  font-weight: 900;
  transform: rotate(-45deg);
}

.cv-service-marker span::before {
  display: block;
  transform: rotate(45deg);
}

.cv-service-marker .lodging {
  background: #4285f4;
}

.cv-service-marker .lodging {
  color: transparent;
}

.cv-service-marker .lodging::before {
  content: "H";
  color: #fff;
}

.cv-service-marker .pharmacy {
  background: #db4437;
  color: transparent;
}

.cv-service-marker .pharmacy::before {
  content: "+";
  color: #fff;
  font-size: 1rem;
}

.cv-service-marker .restaurant {
  background: #7b1e2b;
}

.cv-service-marker .restaurant img {
  width: 18px;
  height: 18px;
  transform: rotate(45deg);
}

.cv-user-location-marker {
  background: transparent;
}

.cv-user-location-marker span {
  position: relative;
  display: block;
  width: 18px;
  height: 18px;
  margin: 6px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: #4285f4;
  box-shadow: 0 0 0 7px rgba(66, 133, 244, 0.18), 0 8px 18px rgba(0, 0, 0, 0.32);
}

.cv-user-location-marker span::after {
  content: "";
  position: absolute;
  inset: -13px;
  border: 1px solid rgba(66, 133, 244, 0.32);
  border-radius: 50%;
}

.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
  background: rgba(4, 22, 21, 0.95);
  color: var(--cream);
}

.leaflet-popup-content-wrapper {
  border: 1px solid rgba(247, 245, 242, 0.18);
  border-radius: 14px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
}

.leaflet-control-zoom {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28) !important;
  border-radius: 14px !important;
  background: rgba(4, 22, 21, 0.88);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
}

.leaflet-control-zoom a {
  width: 42px !important;
  height: 42px !important;
  border: 0 !important;
  background: rgba(4, 22, 21, 0.88) !important;
  color: var(--gold) !important;
  font-family: Inter, sans-serif;
  font-size: 1.35rem !important;
  font-weight: 500;
  line-height: 42px !important;
  text-shadow: none;
}

.leaflet-control-zoom a:first-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18) !important;
}

.leaflet-control-zoom a:hover,
.leaflet-control-zoom a:focus {
  background: rgba(255, 255, 255, 0.14) !important;
  color: var(--cream) !important;
}

.leaflet-control-attribution {
  color: var(--green);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1080px) {
  .cv-db-head,
  .cv-map-section,
  .cv-tech-grid {
    grid-template-columns: 1fr;
  }

  .cv-profile-inner {
    width: 100%;
  }

  .cv-resource-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .cv-stage-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .cv-route-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .cv-dashboard {
    padding: 3.2rem 1rem;
  }

  .cv-db-title {
    font-size: clamp(3rem, 15vw, 5rem);
  }

  .cv-control-card,
  .cv-map-card,
  .cv-db-section {
    border-radius: 20px;
  }

  .cv-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cv-action-button {
    justify-content: center;
    gap: 0.35rem;
    padding: 0 0.5rem;
    font-size: 0.82rem;
  }

  .cv-map-card,
  #map {
    min-height: 62vh;
  }

  .cv-weather-overlay {
    inset: 1rem;
  }

  .cv-profile-wrap {
    height: 260px;
  }

  .cv-tech-metrics-card {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cv-resource-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cv-stage-strip {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    padding-bottom: 0.35rem;
    scroll-snap-type: x mandatory;
  }

  .cv-stage-card {
    flex: 0 0 72%;
    scroll-snap-align: start;
  }

  .cv-db-note {
    text-align: left;
  }

  .cv-db-section-title {
    display: block;
  }

  .cv-db-section-title span {
    display: block;
    margin-top: 0.4rem;
  }

  .cv-route-grid {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    padding-bottom: 0.35rem;
    scroll-snap-type: x mandatory;
  }

  .cv-route-card {
    flex: 0 0 74%;
    scroll-snap-align: start;
  }
}

@media (max-width: 420px) {
  .cv-metrics-card,
  .cv-tech-metrics-card,
  .cv-resource-grid {
    grid-template-columns: 1fr;
  }

  .cv-route-card {
    flex-basis: 84%;
  }

  .cv-stage-card {
    flex-basis: 84%;
  }
}

.cv-db-kicker {
  min-height: clamp(1.15rem, 1.8vw, 1.75rem);
}

.cv-weather-tab,
.cv-action-button {
  justify-content: center;
  height: 35px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.14);
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 750;
}

.primary-action {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.14);
}

.cv-services-panel {
  gap: 0.52rem;
  padding: 0.68rem;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.cv-service-grid {
  gap: 0.38rem;
}

.cv-service-button {
  gap: 0.34rem;
  min-height: 38px;
  border-color: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.075);
  color: rgba(247, 245, 242, 0.82);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0;
}

.cv-service-button:hover,
.cv-service-button.is-active {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.cv-google-pin {
  width: 19px;
  height: 19px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.cv-custom-map-marker {
  background: transparent;
}

.cv-custom-map-marker span {
  position: relative;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 2px solid #fff;
  border-radius: 50% 50% 50% 0;
  background: var(--marker-color);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
  color: #fff;
  transform: rotate(-45deg);
}

.cv-custom-map-marker b {
  display: block;
  font-size: 0.82rem;
  line-height: 1;
  transform: rotate(45deg);
}

.marker-popup {
  gap: 0.48rem;
  min-width: 260px;
}

.marker-popup label {
  color: rgba(247, 245, 242, 0.56);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.marker-name-input {
  width: 100%;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 0 0.7rem;
}

.marker-icon-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.32rem;
  max-height: 142px;
  overflow: auto;
  padding-right: 0.15rem;
}

.marker-icon-choice input {
  position: absolute;
  opacity: 0;
}

.marker-icon-choice span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background: color-mix(in srgb, var(--marker-color) 78%, #000 22%);
  color: #fff;
  cursor: pointer;
  font-weight: 800;
}

.marker-icon-choice input:checked + span {
  border-color: #fff;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.2);
}

#weather-button {
  display: none;
}

.cv-actions {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cv-service-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cv-service-button {
  justify-content: flex-start;
  padding: 0 0.62rem;
}

.cv-google-pin.supermarket {
  background: #34a853;
}

.cv-google-pin.gas {
  background: #f4511e;
}

.cv-google-pin.tourism {
  background: #1a73e8;
}

.cv-service-marker .supermarket {
  background: #34a853;
  color: transparent;
}

.cv-service-marker .supermarket::before {
  content: "S";
  color: #fff;
}

.cv-service-marker .gas {
  background: #f4511e;
  color: transparent;
}

.cv-service-marker .gas::before {
  content: "G";
  color: #fff;
}

.cv-service-marker .tourism {
  background: #1a73e8;
  color: transparent;
}

.cv-service-marker .tourism::before {
  content: "i";
  color: #fff;
  font-size: 1rem;
}

.cv-route-data-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1.18fr);
  gap: 0.65rem;
  align-items: stretch;
}

.cv-route-stats-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.45rem;
}

.cv-route-stats-grid .cv-resource-card {
  min-height: 60px;
  padding: 0.48rem;
}

.cv-route-stats-grid .cv-resource-card strong {
  margin-bottom: 0.28rem;
  font-size: 0.86rem;
}

.cv-route-stats-grid .cv-resource-card span {
  font-size: 0.58rem;
}

.cv-route-stats-grid .cv-resource-card p {
  display: none;
}

.cv-route-profile-card {
  min-height: 0;
  padding: 0.48rem 0.65rem 0.2rem;
  border-radius: 12px;
}

.cv-route-profile-card .cv-profile-wrap {
  height: 100%;
  min-height: 96px;
  max-height: 132px;
}

.cv-profile-route-line {
  stroke-width: 1.05;
}

@media (max-width: 1080px) {
  .cv-route-data-panel {
    grid-template-columns: 1fr;
  }

  .cv-route-stats-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.cv-control-card {
  gap: 0.78rem;
}

.cv-actions {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.56rem;
}

.cv-action-button,
.cv-weather-tab {
  height: 42px;
  padding: 0 0.58rem;
}

.cv-services-panel {
  gap: 0.62rem;
  padding: 0.82rem;
}

.cv-service-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
}

.cv-service-button {
  min-height: 42px;
}

.cv-route-profile-card .cv-profile-wrap {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  grid-template-rows: minmax(0, 1fr) auto;
  column-gap: 0.55rem;
  min-height: 112px;
  max-height: 150px;
}

.cv-route-profile-card .cv-profile-wrap svg {
  grid-column: 2;
  grid-row: 1;
  width: 100%;
  height: 100%;
  min-height: 0;
}

.cv-profile-y-labels {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: rgba(247, 245, 242, 0.58);
  font-size: 0.62rem;
  font-weight: 700;
  line-height: 1;
  text-align: right;
}

.cv-profile-x-labels {
  grid-column: 2;
  grid-row: 2;
  display: flex;
  justify-content: space-between;
  padding-top: 0.22rem;
  color: rgba(247, 245, 242, 0.72);
  font-size: 0.62rem;
  font-weight: 800;
}

.cv-tooltip {
  grid-column: 2;
  grid-row: 1;
}

.cv-profile-route-line {
  shape-rendering: geometricPrecision;
}

.cv-profile-module {
  display: grid;
  gap: 0.58rem;
}

.cv-profile-module-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 28px;
  padding: 0 0.1rem;
}

.cv-profile-module-head span {
  color: rgba(247, 245, 242, 0.62);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.cv-profile-module-head strong {
  color: #fff;
  font-size: 0.78rem;
  font-weight: 650;
}

.cv-route-data-panel {
  grid-template-columns: minmax(0, 1fr) minmax(210px, 0.28fr);
}

.cv-route-profile-card {
  padding: 0.68rem 0.78rem 0.46rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
}

.cv-route-profile-card .cv-profile-wrap {
  grid-template-columns: 46px minmax(0, 1fr);
  min-height: 146px;
  max-height: 180px;
}

.cv-profile-y-labels,
.cv-profile-x-labels {
  font-family: Helvetica, Arial, sans-serif;
  letter-spacing: 0;
}

.cv-profile-x-labels {
  padding-top: 0.36rem;
}

.cv-route-area {
  fill: url(#cv-profile-area);
}

.cv-profile-route-line {
  fill: none;
  stroke: #fff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
  vector-effect: non-scaling-stroke;
}

.cv-hover-line {
  stroke: rgba(255, 255, 255, 0.48);
  stroke-dasharray: 6 7;
}

.cv-hover-dot {
  fill: #7b1e2b;
  stroke: #fff;
  stroke-width: 2.5;
  vector-effect: non-scaling-stroke;
}

.cv-profile-detail {
  min-height: 0;
  padding: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.055);
}

.cv-profile-detail > span {
  color: rgba(247, 245, 242, 0.55);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cv-profile-detail > strong {
  display: block;
  margin: 0.42rem 0 0.8rem;
  color: #fff;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  font-weight: 560;
  line-height: 1;
}

.cv-profile-detail dl {
  display: grid;
  gap: 0.5rem;
  margin: 0;
}

.cv-profile-detail div {
  display: flex;
  justify-content: space-between;
  gap: 0.7rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.cv-profile-detail dt {
  color: rgba(247, 245, 242, 0.52);
  font-size: 0.64rem;
}

.cv-profile-detail dd {
  margin: 0;
  color: rgba(247, 245, 242, 0.92);
  font-size: 0.64rem;
  text-align: right;
}

/* Three-column geoportal: controls, main map, technical route profile. */
.cv-dashboard {
  padding: 0.75rem 1vw;
}

.cv-db-shell {
  grid-template-rows: auto minmax(0, 1fr);
  gap: 0.55rem;
}

.cv-db-head {
  min-height: 22px;
}

.cv-stats-section {
  height: 100%;
  min-height: 0;
  overflow: hidden;
  padding: 0.72rem;
  border-radius: 24px;
}

.cv-profile-module {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto minmax(0, 0.55fr) minmax(0, 0.45fr);
  gap: 0.62rem;
  height: 100%;
  min-height: 0;
}

.cv-profile-module-head {
  display: flex;
  min-height: 26px;
}

.cv-route-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: minmax(46px, 1fr);
  gap: 0.36rem;
  min-height: 0;
  overflow: hidden;
}

.cv-route-stats-grid .cv-resource-card {
  min-height: 0;
  padding: 0.38rem 0.42rem;
  border-radius: 9px;
}

.cv-route-stats-grid .cv-resource-card strong {
  margin-bottom: 0.16rem;
  font-size: 0.74rem;
  line-height: 1;
}

.cv-route-stats-grid .cv-resource-card span {
  font-size: 0.49rem;
  line-height: 1.05;
}

.cv-route-data-panel {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 0.52rem;
  min-height: 0;
}

.cv-route-profile-card {
  min-height: 0;
  height: 100%;
  padding: 0.46rem 0.62rem 0.32rem;
  border-radius: 10px;
}

.cv-route-profile-card .cv-profile-wrap {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  grid-template-rows: minmax(0, 1fr) 16px;
  column-gap: 0.42rem;
  height: 100%;
  min-height: 0;
  max-height: none;
}

.cv-profile-y-labels {
  font-size: 0.54rem;
}

.cv-profile-x-labels {
  align-items: end;
  padding-top: 0.08rem;
  font-size: 0.54rem;
}

.cv-profile-route-line {
  stroke-width: 1.7;
}

.cv-profile-detail {
  height: 100%;
  min-height: 0;
  padding: 0.58rem;
  border-radius: 10px;
}

.cv-profile-detail > span {
  font-size: 0.5rem;
}

.cv-profile-detail > strong {
  margin: 0.34rem 0 0.52rem;
  font-size: 1.16rem;
}

.cv-profile-detail dl {
  gap: 0.34rem;
}

.cv-profile-detail div {
  gap: 0.45rem;
  padding-top: 0.35rem;
}

.cv-profile-detail dt,
.cv-profile-detail dd {
  font-size: 0.56rem;
}

@media (max-width: 1180px) {
  .cv-db-shell {
    grid-template-rows: auto minmax(0, 1fr);
  }

  .cv-map-section {
    grid-template-columns: 1fr;
  }

  .cv-stats-section {
    height: 320px;
  }

  .cv-profile-detail {
    display: block;
  }
}

@media (min-width: 900px) {
  .cv-map-section {
    grid-template-columns: minmax(255px, 20%) minmax(0, 1fr);
  }
}

.cv-dumbria-profile-panel {
  width: 100%;
  height: 100%;
  min-height: 0;
}

.cv-profile-embed {
  min-height: 190px;
  flex: 1 1 auto;
  min-width: 0;
}

.cv-dumbria-profile-panel .drp-root,
.cv-dumbria-profile-panel.drp-root {
  height: 100% !important;
  min-height: 0 !important;
  color: #fff !important;
}

.cv-dumbria-profile-panel .drp-shell,
.cv-dumbria-profile-panel.drp-root .drp-shell {
  display: grid !important;
  grid-template-rows: auto auto minmax(0, 1fr) !important;
  gap: 0.42rem !important;
  height: 100% !important;
  min-height: 0 !important;
  padding: 0.5rem !important;
  overflow: hidden !important;
  border-color: rgba(255, 255, 255, 0.13) !important;
  border-radius: 16px !important;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
}

.cv-dumbria-profile-panel .drp-bg,
.cv-dumbria-profile-panel.drp-root .drp-bg {
  display: none !important;
}

.cv-dumbria-profile-panel .drp-header,
.cv-dumbria-profile-panel.drp-root .drp-header {
  display: grid !important;
  gap: 0.35rem !important;
  margin: 0 !important;
}

.cv-dumbria-profile-panel .drp-kicker,
.cv-dumbria-profile-panel.drp-root .drp-kicker {
  display: none !important;
}

.cv-dumbria-profile-panel .drp-header h2,
.cv-dumbria-profile-panel.drp-root .drp-header h2 {
  margin: 0 !important;
  color: #fff !important;
  font-family: Helvetica, Arial, sans-serif !important;
  font-size: 0.78rem !important;
  font-weight: 460 !important;
  letter-spacing: 0 !important;
}

.cv-dumbria-profile-panel .drp-subtitle,
.cv-dumbria-profile-panel.drp-root .drp-subtitle {
  display: none !important;
  color: rgba(247, 245, 242, 0.54) !important;
  font-size: 0.66rem !important;
  line-height: 1.25 !important;
}

.cv-dumbria-profile-panel .drp-live,
.cv-dumbria-profile-panel.drp-root .drp-live {
  min-width: 0 !important;
  padding: 0.3rem 0.42rem !important;
  border-color: rgba(255, 255, 255, 0.16) !important;
  background: rgba(255, 255, 255, 0.06) !important;
  color: #fff !important;
  font-size: 0.62rem !important;
}

.cv-dumbria-profile-panel .drp-dot,
.cv-dumbria-profile-panel.drp-root .drp-dot {
  background: #fff !important;
  box-shadow: 0 0 14px rgba(255, 255, 255, 0.44) !important;
}

.cv-dumbria-profile-panel .drp-stats,
.cv-dumbria-profile-panel.drp-root .drp-stats {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 0.28rem !important;
  margin: 0 !important;
}

.cv-dumbria-profile-panel .drp-stats article,
.cv-dumbria-profile-panel.drp-root .drp-stats article {
  padding: 0.34rem !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
  border-radius: 10px !important;
  background: rgba(255, 255, 255, 0.055) !important;
}

.cv-dumbria-profile-panel .drp-stats span,
.cv-dumbria-profile-panel.drp-root .drp-stats span {
  color: rgba(247, 245, 242, 0.52) !important;
  font-size: 0.48rem !important;
  letter-spacing: 0.08em !important;
}

.cv-dumbria-profile-panel .drp-stats strong,
.cv-dumbria-profile-panel.drp-root .drp-stats strong {
  margin-top: 0.2rem !important;
  color: #fff !important;
  font-size: 0.68rem !important;
}

.cv-dumbria-profile-panel .drp-grid,
.cv-dumbria-profile-panel.drp-root .drp-grid {
  display: grid !important;
  grid-template-columns: 1fr !important;
  grid-template-rows: minmax(0, 1fr) auto !important;
  gap: 0.52rem !important;
  min-height: 0 !important;
}

.cv-dumbria-profile-panel .drp-chart-card,
.cv-dumbria-profile-panel .drp-detail,
.cv-dumbria-profile-panel.drp-root .drp-chart-card,
.cv-dumbria-profile-panel.drp-root .drp-detail {
  border-color: rgba(255, 255, 255, 0.1) !important;
  border-radius: 12px !important;
  background: rgba(0, 0, 0, 0.12) !important;
}

.cv-dumbria-profile-panel .drp-chart-card,
.cv-dumbria-profile-panel.drp-root .drp-chart-card {
  min-height: 0 !important;
  padding: 0.56rem !important;
}

.cv-dumbria-profile-panel .drp-card-head,
.cv-dumbria-profile-panel.drp-root .drp-card-head {
  margin-bottom: 0.28rem !important;
  font-size: 0.62rem !important;
}

.cv-dumbria-profile-panel .drp-reset,
.cv-dumbria-profile-panel.drp-root .drp-reset {
  display: none !important;
}

.cv-dumbria-profile-panel .drp-chart-wrap,
.cv-dumbria-profile-panel.drp-root .drp-chart-wrap {
  min-height: 96px !important;
}

.cv-dumbria-profile-panel .drp-line,
.cv-dumbria-profile-panel.drp-root .drp-line {
  stroke: #fff !important;
  filter: none !important;
}

.cv-dumbria-profile-panel .drp-area,
.cv-dumbria-profile-panel.drp-root .drp-area {
  fill: rgba(255, 255, 255, 0.1) !important;
}

.cv-dumbria-profile-panel .drp-axis,
.cv-dumbria-profile-panel.drp-root .drp-axis {
  fill: rgba(247, 245, 242, 0.48) !important;
  font-size: 10px !important;
}

.cv-dumbria-profile-panel .drp-marker,
.cv-dumbria-profile-panel .drp-map-marker,
.cv-dumbria-profile-panel.drp-root .drp-marker,
.cv-dumbria-profile-panel.drp-root .drp-map-marker {
  stroke: #fff !important;
  filter: none !important;
}

.cv-dumbria-profile-panel .drp-side,
.cv-dumbria-profile-panel.drp-root .drp-side {
  display: block !important;
}

.cv-dumbria-profile-panel .drp-map-card,
.cv-dumbria-profile-panel.drp-root .drp-map-card {
  display: none !important;
}

.cv-dumbria-profile-panel .drp-detail,
.cv-dumbria-profile-panel.drp-root .drp-detail {
  display: none !important;
}

.cv-dumbria-profile-panel .drp-detail strong,
.cv-dumbria-profile-panel.drp-root .drp-detail strong {
  margin: 0.28rem 0 0.42rem !important;
  color: #fff !important;
  font-size: 1.25rem !important;
}

.cv-dumbria-profile-panel .drp-detail dl,
.cv-dumbria-profile-panel.drp-root .drp-detail dl {
  gap: 0.28rem !important;
}

.cv-dumbria-profile-panel .drp-detail div,
.cv-dumbria-profile-panel.drp-root .drp-detail div {
  padding-top: 0.28rem !important;
}

.cv-dumbria-profile-panel .drp-detail dt,
.cv-dumbria-profile-panel .drp-detail dd,
.cv-dumbria-profile-panel.drp-root .drp-detail dt,
.cv-dumbria-profile-panel.drp-root .drp-detail dd {
  font-size: 0.56rem !important;
}
