/* Background Sync Notification Styles */
.sync-notification {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: var(--background);
  color: var(--foreground);
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  border: 1px solid var(--border);
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
  transform: translateY(120%);
  opacity: 0;
  transition: all 0.3s ease-in-out;
  z-index: 1000;
  max-width: 320px;
  font-size: 0.875rem;
}

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

.sync-notification.success {
  background-color: var(--highlight);
  color: var(--background);
}

.sync-notification.error {
  background-color: #ef4444;
  color: white;
}

.sync-notification.warning {
  background-color: #f59e0b;
  color: white;
}

.sync-notification.info {
  background-color: var(--accent);
  color: var(--background);
}

/* Mobile adjustments */
@media (max-width: 640px) {
  .sync-notification {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    max-width: none;
  }
}
