/* Status messages as fixed overlay toast */
[data-drupal-messages] [role="contentinfo"]  {
  position: fixed;
  top: 40px;
  right: 40px;
  z-index: 10000;
  max-width: 420px;
  width: auto;
  margin: 0;
  padding: 16px 24px;
  border-radius: 8px;
  border-left: 4px solid #4caf50;
  background-color: #1b3a2a;
  color: #c8f7dc;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  font-size: 14px;
  line-height: 1.5;
  animation: toast-slide-in 0.35s ease-out, toast-fade-out 0.5s ease 4.5s forwards;
  pointer-events: auto;
}

[data-drupal-messages] [role="contentinfo"] .visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

@keyframes toast-slide-in {
  from { opacity: 0; transform: translateX(60px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes toast-fade-out {
  to { opacity: 0; transform: translateX(60px); }
}
