/* Индикатор синхронизации */
.sync-indicator {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.85);
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 10000;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sync-indicator.show {
  opacity: 1;
  transform: translateY(0);
}

.sync-indicator.success {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Адаптив */
@media (max-width: 768px) {
  .sync-indicator {
    bottom: 10px;
    right: 10px;
    left: 10px;
    text-align: center;
    justify-content: center;
  }
}

