.toast {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.95);

  z-index: 9999;

  background:
    linear-gradient(180deg, #1f2937, #111827);
  border: 1px solid rgba(255,255,255,.12);

  color: #f1f5f9;

  padding: 14px 20px;
  border-radius: 14px;

  box-shadow:
    0 22px 65px rgba(0,0,0,.65),
    inset 0 0 0 1px rgba(255,255,255,.06);

  width: auto;
  max-width: 420px;
  min-width: 260px;

  text-align: center;

  opacity: 0;
  pointer-events: none;

  transition:
    opacity .2s ease,
    transform .2s ease;
}

.toast.show {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

/* ===== CÍM ===== */

.toast-title {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 4px;

  color: #ffffff;
  letter-spacing: .2px;
  text-shadow: 0 1px 2px rgba(0,0,0,.45);
}

/* ===== SZÖVEG ===== */

.toast-text {
  font-size: 0.95rem;
  color: #e5e7eb;
  line-height: 1.4;

  text-shadow: 0 1px 2px rgba(0,0,0,.35);
}

/* ===== BEZÁRÓ ===== */

.toast-close {
  display: none !important;
}
