.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;

  min-width: 260px;

  padding: 14px 18px;

  border-radius: 12px;

  background: #16181d;
  color: white;

  font-weight: 700;

  opacity: 0;
  transform: translateY(20px);

  transition: 0.3s;

  z-index: 999999;

  border: 1px solid rgba(255,255,255,0.08);
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.toast-success {
  border-color: #4ade80;
}

.toast-error {
  border-color: #ff4d4d;
}

.toast-warning {
  border-color: #facc15;
}

.confirm-overlay {
  position: fixed;
  inset: 0;

  background: rgba(0,0,0,0.6);

  display: flex;
  align-items: center;
  justify-content: center;

  z-index: 9999;
}

.confirm-box {
  background: #16181d;

  padding: 20px;

  border-radius: 14px;

  width: 320px;

  color: white;
}

.confirm-text {
  margin-bottom: 18px;

  font-weight: 700;
}

.confirm-buttons {
  display: flex;
  gap: 10px;
}

.confirm-buttons button {
  flex: 1;

  border: none;

  padding: 10px;

  border-radius: 10px;

  cursor: pointer;

  font-weight: 700;
}

.yes {
  background: #ff4d4d;
  color: white;
}

.no {
  background: #2a2d35;
  color: white;
}