/*!
 * Axcora Toast Enhanced
 * Modern toast notification system with smooth animations and accessibility
 */

/* ===== TOAST MODERN STYLE ===== */
.toast-container {
  position: fixed;
  z-index: 1090;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  pointer-events: none;
  max-width: 90vw;
}
@media (max-width: 600px) {
  .toast-container {
    right: 8px;
    bottom: 8px;
    left: 8px;
    max-width: unset;
  }
}
.toast {
  min-width: 250px;
  max-width: 350px;
  background: var(--p700, #222);
  color: white;
  border-radius: var(--radius-lg, 12px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  transition: all 0.35s cubic-bezier(.22,1,.36,1);
  pointer-events: auto;
  border: none;
  display: flex;
  align-items: center;
  overflow: hidden;
  font-size: 1rem;
}
.toast.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.toast .toast-body {
  flex: 1 1 auto;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  line-height: 1.4;
}
.btn-close {
  background: transparent;
  border: none;
  color: white;
  font-size: 1.25rem;
  padding: 0.25rem 0.5rem;
  cursor: pointer;
  opacity: 0.75;
  transition: opacity 0.2s;
}
.btn-close:hover {
  opacity: 1;
}