.lm-toast-container {
  position: fixed;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  pointer-events: none;
}

.lm-toast {
  min-width: 260px;
  max-width: 360px;
  background: #111827;
  color: #f9fafb;
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: flex-start;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.3);
  opacity: 0;
  transform: translateY(-10px) scale(0.98);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: auto;
}

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

.lm-toast-icon {
  margin-right: 0.75rem;
  font-size: 1.4rem;
  line-height: 1;
}

.lm-toast-content {
  flex: 1;
}

.lm-toast-title {
  font-weight: 600;
  margin-bottom: 0.1rem;
  font-size: 0.9rem;
}

.lm-toast-message {
  font-size: 0.85rem;
  opacity: 0.9;
}

.lm-toast-close {
  background: transparent;
  border: none;
  color: #9ca3af;
  margin-left: 0.5rem;
  font-size: 1.1rem;
  cursor: pointer;
}

.lm-toast-close:hover {
  color: #e5e7eb;
}

.lm-toast-success {
  border-left: 3px solid #16a34a;
}

.lm-toast-error {
  border-left: 3px solid #ef4444;
}

.lm-toast-warning {
  border-left: 3px solid #f59e0b;
}

.lm-toast-info {
  border-left: 3px solid #3b82f6;
}

@media (max-width: 576px) {
  .lm-toast-container {
    left: 0.75rem;
    right: 0.75rem;
    top: auto;
    bottom: 1rem;
  }

  .lm-toast {
    width: 100%;
  }
}


