.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}

.vitals-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.active-pulse {
  animation: pulse-ring 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

@keyframes pulse-ring {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.ekg-line {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: draw 3s linear infinite;
}

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

.glass-panel {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

.ehodr-dash-switcher {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #00142f;
  color: #fff;
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ehodr-dash-switcher a {
  padding: 4px 10px;
  border-radius: 9999px;
  opacity: 0.75;
  transition: opacity 0.15s, background 0.15s;
}

.ehodr-dash-switcher a:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.12);
}

.ehodr-dash-switcher a.is-active {
  opacity: 1;
  background: #006a61;
}

body.has-dash-switcher {
  padding-top: 32px;
}

body.has-dash-switcher header.fixed,
body.has-dash-switcher nav.fixed {
  top: 32px;
  height: calc(100vh - 32px);
}

body.has-dash-switcher header.fixed {
  height: 4rem;
}

body.has-dash-switcher main.ml-64.pt-16 {
  padding-top: calc(4rem + 32px);
}

body.has-dash-switcher main.pt-24 {
  padding-top: calc(6rem + 32px);
}

body.has-dash-switcher aside.fixed.pt-16 {
  padding-top: calc(4rem + 32px);
}

body.has-dash-switcher main.md\:ml-64.pt-16 {
  padding-top: calc(4rem + 32px);
}
