/* === Network Status Toast === */
.network-toast {
  position: fixed;
  bottom: 0px;
  right: 20px;
/* ===background: #d35351;
  min-height: 27px;=== */
  color: #ffffff;
  padding: 10px 0px;
  border-radius: 4px;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  z-index: 9998;
  transition: transform 0.35s ease, opacity 0.35s ease;
  user-select: none;
}

/* Status Dot */
.network-toast .dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #d35351;
}

/* Online variant */
.network-toast.online {
}

.network-toast.online .dot {
  background: #0b77bc;
}

/* Hidden */
.network-toast.hidden {
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}