.processo-rj-toast {
  position: fixed;
  top: 20px;
  left: 20px;
  background: white;
  border-left: 6px solid #4CAF50; /* Thicker border */
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  padding: 20px 25px; /* Larger padding */
  z-index: 9999;
  min-width: 350px; /* Larger width */
  max-width: 500px;
  transform: translateX(-120%); /* Slide from left */
  transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  font-family: 'Poppins', sans-serif;
}

.processo-rj-toast.show {
  transform: translateX(0);
}

.processo-rj-toast.toast-error {
  border-left-color: #f44336;
}

.processo-rj-toast.toast-warning {
  border-left-color: #ff9800;
}

.processo-rj-toast.toast-info {
  border-left-color: #2196F3;
}

.toast-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px; /* Larger icon */
  height: 32px;
  border-radius: 50%;
  background: #e8f5e9;
  color: #4CAF50;
  margin-right: 20px;
  font-weight: bold;
  flex-shrink: 0;
  font-size: 18px;
}

.toast-error .toast-icon {
  background: #ffebee;
  color: #f44336;
}

.toast-warning .toast-icon {
  background: #fff3e0;
  color: #ff9800;
}

.toast-info .toast-icon {
  background: #e3f2fd;
  color: #2196F3;
}

.toast-content {
  flex-grow: 1;
  color: #333;
  font-size: 16px; /* Larger text */
  line-height: 1.5;
}

.toast-close {
  cursor: pointer;
  color: #999;
  font-size: 24px; /* Larger close button */
  margin-left: 20px;
  line-height: 1;
}

.toast-close:hover {
  color: #333;
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
  body.dark-mode .processo-rj-toast,
  .dark .processo-rj-toast {
    background: #1f2937;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  }

  body.dark-mode .toast-content,
  .dark .toast-content {
    color: #e5e7eb;
  }
}
