.synclist-toast-container {
      position: fixed;
      bottom: 24px;
      right: 24px;
      display: flex;
      flex-direction: column;
      gap: 12px;
      z-index: 99999;
      pointer-events: none;
}

.synclist-toast {
      background: #111116;
      color: #f0f0f5;
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 12px;
      padding: 14px 20px;
      font-family: inherit;
      font-size: 0.9rem;
      font-weight: 500;
      display: flex;
      align-items: center;
      gap: 12px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
      transform: translateY(20px);
      opacity: 0;
      transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      pointer-events: auto;
}

.synclist-toast.show {
      transform: translateY(0);
      opacity: 1;
}

.synclist-toast-icon {
      width: 20px;
      height: 20px;
      flex-shrink: 0;
}

.synclist-toast.success .synclist-toast-icon {
      color: #10b981;
}

.synclist-toast.error .synclist-toast-icon {
      color: #ef4444;
}

.synclist-toast.info .synclist-toast-icon {
      color: #3b82f6;
}