.notification-container {
  position: fixed;
  bottom: 20px; right: 20px;
  display: flex; flex-direction: column; align-items: flex-end;
  gap: 10px; z-index: 9999;
  pointer-events: none; /* Container should not block page interaction */
}
.toast-box {
  min-width: 250px; max-width: 350px;
  padding: 10px 40px 10px 15px; border-radius: 8px;
  color: #fff; font-size: 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
  animation: slide-in .3s ease;
  position: relative;
  pointer-events: auto; /* Toast boxes themselves are clickable */
}
.toast-content strong {
  display: block;
  margin-bottom: 2px;
}
.toast-close {
  position: absolute;
  top: 6px;
  right: 8px;
  background: transparent;
  border: none;
  color: inherit;
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
  cursor: pointer;
  opacity: 0.75;
  transition: opacity .2s ease;
}
.toast-close:hover,
.toast-close:focus {
  opacity: 1;
}
.toast-close:focus {
  outline: 2px solid rgba(255,255,255,.7);
  outline-offset: 2px;
}
.toast-info { background:#2b73b6; }
.toast-success { background:#28a745; }
.toast-warning { background:#ffc107; color:#222; }
.toast-error { background:#dc3545; }
@keyframes slide-in { from{opacity:0;transform:translateY(15px);} to{opacity:1;transform:translateY(0);} }
.fade-out { opacity:0; transform:translateY(10px); transition:all .4s ease; }
