.bm-toast-container {
  position: fixed;
  top: 80px;
  right: 24px;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
  pointer-events: none;
}

.bm-toast {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 260px;
  max-width: 420px;
  padding: 14px 18px;
  border-radius: 12px;
  color: #ffffff !important;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.4;
  box-shadow: 0 10px 40px rgba(15, 23, 42, 0.25);
  animation: bm-toast-in 0.25s ease-out;
  pointer-events: auto;
}

.bm-toast--success {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  box-shadow: 0 12px 30px rgba(16, 185, 129, 0.3);
  color: #ffffff !important;
}
.bm-toast--success .bm-toast__icon,
.bm-toast--success .bm-toast__message,
.bm-toast--success .bm-toast__close {
  color: #ffffff !important;
}

.bm-toast--error {
  background: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%);
  box-shadow: 0 12px 30px rgba(239, 68, 68, 0.3);
  color: #ffffff !important;
}
.bm-toast--error .bm-toast__icon,
.bm-toast--error .bm-toast__message,
.bm-toast--error .bm-toast__close {
  color: #ffffff !important;
}

.bm-toast--warning {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  box-shadow: 0 12px 30px rgba(245, 158, 11, 0.3);
  color: #ffffff !important;
}
.bm-toast--warning .bm-toast__icon,
.bm-toast--warning .bm-toast__message,
.bm-toast--warning .bm-toast__close {
  color: #ffffff !important;
}

.bm-toast--info {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  box-shadow: 0 12px 30px rgba(59, 130, 246, 0.3);
  color: #ffffff !important;
}
.bm-toast--info .bm-toast__icon,
.bm-toast--info .bm-toast__message,
.bm-toast--info .bm-toast__close {
  color: #ffffff !important;
}

.bm-toast__icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.bm-toast__message {
  flex: 1;
}

.bm-toast__close {
  background: transparent;
  border: none;
  color: inherit;
  cursor: pointer;
  font-size: 1.1rem;
  padding: 0;
  line-height: 1;
}

.bm-toast--closing {
  animation: bm-toast-out 0.2s ease-in forwards;
}

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

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