.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast-admin {
  background: white;
  padding: 16px 24px;
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-900);
  display: flex;
  align-items: center;
  gap: 14px;
  animation: toastIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  min-width: 300px;
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(4px);
}

.toast-admin .toast-icon {
  font-size: 28px;
  line-height: 1;
}

.toast-admin.success {
  background: linear-gradient(135deg, #e6f9f1, #d1f0e6);
  border-left: 4px solid var(--success);
}

.toast-admin.error {
  background: linear-gradient(135deg, #fde8e8, #fcd5d5);
  border-left: 4px solid var(--danger);
}

.toast-admin.warning {
  background: linear-gradient(135deg, #fff3e0, #ffe8c8);
  border-left: 4px solid var(--warning);
}

.toast-admin.info {
  background: linear-gradient(135deg, #e3f0ff, #cce3ff);
  border-left: 4px solid var(--secondary);
}

@keyframes toastIn {
  from {
    opacity: 0;
    transform: translateX(40px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

.toast-admin.out {
  animation: toastOut 0.3s ease forwards;
}

@keyframes toastOut {
  to {
    opacity: 0;
    transform: translateX(40px) scale(0.95);
  }
}

@media (max-width: 480px) {
  .toast-admin {
    min-width: unset;
    width: 100%;
  }
}
