.offline-indicator {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--brand-dark);
  color: #fff;
  border-radius: 24px;
  font-size: 0.8rem;
  font-weight: 500;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  z-index: 9999;
  backdrop-filter: blur(8px);
  transition: opacity 0.3s;
}
.offline-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.offline-dot.online { background: #22c55e; }
.offline-dot.offline { background: #ef4444; }
.offline-dot.syncing { background: #f59e0b; animation: pulse 1s infinite; }
.pending-badge {
  background: var(--brand-accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 12px;
  min-width: 20px;
  text-align: center;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
