#trias-toast-root {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 20000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.notification,
.trias-toast {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-width: 320px;
  max-width: 440px;
  padding: 14px 16px;
  border-radius: 0;
  border: 1px solid var(--ui-border-color);
  background: var(--ui-surface-elevated);
  color: var(--ui-text-1);
  box-shadow: var(--ui-shadow-md);
  pointer-events: auto;
}

.trias-toast__body {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 13px;
  line-height: 1.5;
  word-break: break-word;
}

.trias-toast.success,
.notification.success { border-left: 4px solid var(--success, #38a169); }
.trias-toast.error,
.notification.error { border-left: 4px solid var(--error, #e53e3e); }
.trias-toast.warning,
.notification.warning { border-left: 4px solid var(--warning, #d69e2e); }
.trias-toast.info,
.notification.info { border-left: 4px solid var(--info, #4484b0); }

.trias-toast__close {
  margin-left: auto;
  border: 0;
  background: transparent;
  color: var(--ui-text-2);
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
}
