/* ============================================================
   DOSYA SORUMLULUGU — base-12-toast.css
   ------------------------------------------------------------
   NE YAPAR   : Toast bildirim balonu.
   KAYNAK     : v3.12.0'da bolundu — kurallar birebir tasindi,
                hicbir kural yeniden yazilmadi veya siralanmadi.
   SIRA       : index.html'deki <link> sirasi kaskadi belirler.
                Bu dosyanin sirasini DEGISTIRME.
   ------------------------------------------------------------
   Tam dosya listesi ve sira: BAGIMLILIK-HARITASI.md
   ============================================================ */

/* ============================================================
   TOAST
   ============================================================ */
#toast {
  position: fixed;
  bottom: calc(var(--nav-h) + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: #111;
  color: #fff;
  padding: 11px 20px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 600;
  z-index: 9999;
  opacity: 0;
  transition: all 0.28s cubic-bezier(0.34,1.56,0.64,1);
  white-space: nowrap;
  pointer-events: none;
  max-width: calc(100% - 32px);
  text-align: center;
  cursor: default;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  letter-spacing: -0.1px;
}
#toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: all;
}
#toast.toast-action {
  background: var(--orange);
  padding: 12px 20px;
  border-radius: 16px;
  white-space: normal;
  line-height: 1.4;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(232,93,0,0.35);
}

