/*
 * slider-field-actions.css — Team Portal lib primitive styles.
 *
 * Block 2020 task radar-os--546. Consumer: Slider primitive f.actions array.
 * Renders row of icon buttons after input for open/copy/share/custom actions.
 */

.sl-field__actions {
  display: flex;
  gap: 6px;
  margin-top: 6px;
  flex-wrap: wrap;
}

.sl-field-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: transparent;
  color: inherit;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.sl-field-action:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.25);
}

.sl-field-action:focus-visible {
  outline: 2px solid var(--accent, #4a9eff);
  outline-offset: 2px;
}

.sl-field-action svg {
  width: 18px;
  height: 18px;
}
