#notify-container {
  position: fixed;
  top: 90px;
  right: 24px;
  z-index: 9999;
  width: 340px;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Kart */
.notify {
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(30, 30, 40, 0.75);
  color: #fff;
  padding: 18px 18px;
  border-radius: 14px;
  margin-bottom: 14px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.08);

  opacity: 0;
  transform: translateY(20px) scale(0.96);
}

/* Giriş animasyonu */
.notify.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Çıkış animasyonu */
.notify.hiding {
  opacity: 0;
  transform: translateY(20px) scale(0.96);
  transition: all 0.25s ease;
}

/* Tip renkleri (soft, modern) */
.notify.success { border-left: 4px solid #22c55e; }
.notify.error   { border-left: 4px solid #ef4444; }
.notify.warning { border-left: 4px solid #f59e0b; }
.notify.info    { border-left: 4px solid #3b82f6; }

/* Başlık */
.notify-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Mesaj */
.notify-message {
  font-size: 13.5px;
  line-height: 1.5;
  color: rgba(255,255,255,0.85);
}

/* Butonlar */
.notify-actions {
  margin-top: 14px;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.notify-actions button {
  border: none;
  padding: 8px 14px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 12.5px;
  font-weight: 600;
  transition: all 0.2s ease;
}

/* Primary (gradient modern) */
.notify-actions .btn-primary {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: #fff;
}

.notify-actions .btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(99,102,241,0.4);
}

/* Secondary */
.notify-actions .btn-secondary {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.8);
}

.notify-actions .btn-secondary:hover {
  background: rgba(255,255,255,0.15);
}

/* Progress bar */
.notify-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, #6366f1, #8b5cf6);
  width: 100%;
  border-radius: 0 0 14px 14px;
}

/* Icon */
.notify-icon {
  font-size: 15px;
  opacity: 0.9;
}
