/* Toastify Messages Styling */
.toastify-drupal {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  padding: 16px 20px;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  font-size: 14px;
  line-height: 1.5;
  max-width: 400px;
  font-weight: 500;
}

.toastify-drupal.toastify-on {
  animation: toastifySlideIn 0.3s ease-out;
}

@keyframes toastifySlideIn {
  from {
    transform: translateX(110%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Optional: Hide any lingering message containers */
.messages {
  display: none !important;
}
