/* Delete popover */
.del-pop {
  display: none;
  position: absolute;
  top: 4px;
  right: 4px;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 0.78rem;
  white-space: nowrap;
  box-shadow: 0 6px 24px rgba(0,0,0,0.5);
  z-index: 10;
}

.del-pop.open { display: flex; }
.del-pop span { color: var(--muted); }

.pop-yes {
  padding: 3px 9px;
  background: var(--col-blocked);
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
}

.pop-no {
  padding: 3px 9px;
  background: var(--surface2);
  color: var(--text);
  border: none;
  border-radius: 5px;
  font-size: 0.78rem;
  cursor: pointer;
}

/*  CANVAS   */
#celebCanvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
}

/*  TOAST  */
#toast {
  position: fixed;
  bottom: 52px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--surface2);
  color: var(--text);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  z-index: 200;
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
  white-space: nowrap;
}

#toast.show { opacity: 1; }
