/* ===============================
   Global Minimal Toast Bildirim Sistemi
   =============================== */

.toast {
  position: fixed;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  min-width: 260px;
  max-width: 90%;
  padding: 14px 18px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transition: all 0.45s ease;
  z-index: 9999;
  color: #fff;
  pointer-events: none;
}

.toast.show {
  bottom: 35px;
  opacity: 1;
  pointer-events: auto;
}

.toast.success { background-color: #00b67a; }
.toast.error { background-color: #e74c3c; }
.toast.warning { background-color: #f39c12; }

.toast i {
  font-size: 18px;
}
