/* === palette change only === */
:root{
  --blue: #96EBEB;   /* replaces #cfff49 */
  --ink:  #181f1f;   /* replaces #0e0e0e */
}

/* 1) global paint + text (was #cfff49 / #0e0e0e) */
html, main { background-color: var(--blue) !important; }  /* html/main were #cfff49 */
body       { color: var(--ink) !important; }              /* body was #0e0e0e */

/* 2) header bits */
header .emdash { background-color: var(--ink) !important; } /* was #0e0e0e */
#cross{
  background:   var(--blue) !important;   /* was #cfff49 */
  border-color: var(--ink)  !important;   /* was #0e0e0e */
  color:        var(--ink)  !important;   /* was #0e0e0e */
}

/* 3) gradient tunnel rails + fades (were #0e0e0e) */
.gradiant-tunnel:before,
.gradiant-tunnel:after{
  background-color: var(--ink) !important;
}
.gradiant-tunnel span:first-child{
  background: linear-gradient(0deg, transparent, var(--ink)) !important;
}
.gradiant-tunnel span:last-child{
  background: linear-gradient(180deg, transparent, var(--ink)) !important;
}

/* 4) inline SVG bubbles: change only the fill from #cfff49 → #96EBEB, keep stroke #0f0f0f */
svg [fill="#cfff49"],
svg [style*="fill:#cfff49"]{
  fill: var(--blue) !important;
}

.client-rect {
  word-break: break-word; !important;
}