.cp-action-popover {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  border-radius: 14px;
  background: var(--cp-color-surface);
  border: 1px solid var(--cp-color-border-subtle);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
}

.cp-action-popover__button {
  border: none;
  background: var(--cp-color-surface-subtle);
  color: var(--cp-color-text-primary);
  width: 30px;
  height: 30px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.cp-action-popover__button .bi {
  font-size: 0.95rem;
  line-height: 1;
}

.cp-action-popover__icon-svg {
  width: 0.95rem;
  height: 0.95rem;
  display: block;
  fill: currentColor;
}

.cp-action-popover__icon-check-bg {
  fill: var(--cp-color-surface);
  stroke: currentColor;
  stroke-width: 0.8;
}

.cp-action-popover__icon-check {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cp-action-popover__icon-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
}

.cp-action-popover__plus {
  position: absolute;
  top: -7px;
  right: -7px;
  font-size: 0.52rem;
  font-weight: 700;
  line-height: 1;
}

.cp-action-popover__button:hover {
  background: var(--cp-color-accent-subtle);
  transform: translateY(-1px);
}

.cp-action-popover__button.is-danger:hover {
  color: #b3261e;
}
