/* ===== TOAST ===== */
.toast {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 14px 20px;
  border-radius: 12px;
  color: white;
  font-weight: 500;
  z-index: 9999;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.4s ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.toast.success { background: #00c853; }
.toast.error { background: #ff1744; }

/* ===== MODAL ===== */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.modal.active {
  display: flex;
}

.modal-box {
  background: white;
  color: #111;
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  width: 90%;
  max-width: 340px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.modal-box button {
  margin-top: 20px;
  width: 100%;
  padding: 12px;
  background: #111;
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: 600;
}