/* DreamND Health Widget */
#dreamnd-health {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9999;
  width: 280px;
  max-width: calc(100vw - 36px);
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(12, 18, 28, 0.88);
  color: #fff;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  box-shadow: 0 12px 35px rgba(0,0,0,.35);
  backdrop-filter: blur(12px);
  font-size: 14px;
}

#dreamnd-health .dh-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  margin-bottom: 8px;
}

#dreamnd-health .dh-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #36d399;
  box-shadow: 0 0 12px #36d399;
}

#dreamnd-health.warning .dh-dot {
  background: #fbbf24;
  box-shadow: 0 0 12px #fbbf24;
}

#dreamnd-health.critical .dh-dot {
  background: #f87171;
  box-shadow: 0 0 12px #f87171;
}

#dreamnd-health .dh-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 3px 0;
  opacity: .95;
}

#dreamnd-health .dh-label {
  opacity: .7;
}

#dreamnd-health .dh-small {
  margin-top: 8px;
  font-size: 12px;
  opacity: .6;
}

@media (max-width: 700px) {
  #dreamnd-health {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
  }
}
