/* Base button reset.
   Visual button contracts live in paper_* files. */

.vk-btn {
  font-family: var(--font-ui);
  text-decoration: none;
  transition:
    background-color 120ms ease,
    border-color 120ms ease,
    color 120ms ease,
    opacity 120ms ease;
}

.vk-btn:hover {
  text-decoration: none;
}

.vk-btn:focus,
.vk-btn:focus-visible {
  outline: none;
  box-shadow: none;
}

.vk-btn.is-disabled,
.vk-btn:disabled,
.vk-btn[aria-disabled="true"] {
  opacity: 0.58;
  cursor: default;
  pointer-events: none;
}

.vk-btn .lucide {
  display: block;
  flex: 0 0 auto;
}
