/* src/styles/base/component-base.css */
.vf-button,
.vf-icon-button,
.vf-toolbar-button,
.vf-input,
.vf-select,
.vf-textarea,
.vf-radio,
.vf-switch__input,
.vf-side-nav__item,
.vf-breadcrumbs__link,
.vf-tabs__tab {
  font: inherit;
}
.vf-button:disabled,
.vf-icon-button:disabled,
.vf-toolbar-button:disabled,
.vf-segmented-control__item:disabled,
.vf-input:disabled,
.vf-select:disabled,
.vf-textarea:disabled,
.vf-checkbox:disabled,
.vf-radio:disabled,
.vf-switch__input:disabled {
  cursor: not-allowed;
  opacity: 0.56;
}
@media (max-width: 780px) {
  .vf-app-shell,
  .vf-app-shell__body,
  .vf-app-shell--with-sidebar .vf-app-shell__body,
  .vf-app-shell--sidebar-collapsed .vf-app-shell__body {
    grid-template-columns: minmax(0, 1fr);
  }
  .vf-app-shell__sidebar {
    position: relative;
    inset: auto;
    width: auto;
    max-height: 320px;
    border-right: 0;
    border-bottom: 1px solid var(--vf-border);
  }
  .vf-app-shell__sidebar-scroll {
    max-height: 320px;
  }
  .vf-app-shell--sidebar-fixed .vf-app-shell__sidebar {
    position: relative;
    inset: auto;
    width: auto;
  }
  .vf-app-shell--with-header.vf-app-shell--sidebar-fixed .vf-app-shell__sidebar {
    inset-block-start: auto;
  }
  .vf-page {
    --vf-page-padding: var(--vf-space-4);
  }
  .vf-page-header__row,
  .vf-field--horizontal,
  .vf-page-toolbar,
  .vf-top-nav {
    grid-template-columns: 1fr;
    align-items: stretch;
    flex-direction: column;
  }
  .vf-field--horizontal .vf-field__description,
  .vf-field--horizontal .vf-field__message,
  .vf-field--horizontal > :not(.vf-field__label, .vf-field__description, .vf-field__message) {
    grid-column: auto;
  }
  .vf-page-header__actions,
  .vf-page-toolbar__right,
  .vf-top-nav__actions {
    justify-content: flex-start;
  }
  .vf-side-nav {
    max-height: 320px;
  }
}

/* src/styles/base/focus.css */
.vf-button:focus-visible,
.vf-icon-button:focus-visible,
.vf-toolbar-button:focus-visible,
.vf-toggle-button:focus-visible,
.vf-toggle-button:focus-visible,
.vf-toggle-button:focus-visible,
.vf-segmented-control__item:focus-visible,
.vf-input:focus-visible,
.vf-select:focus-visible,
.vf-textarea:focus-visible,
.vf-checkbox:focus-visible,
.vf-radio:focus-visible,
.vf-switch__input:focus-visible + .vf-switch__control,
.vf-multi-select__trigger:focus-visible,
.vf-multi-select__option input:focus-visible,
.vf-transfer-list__option input:focus-visible,
.vf-toast__dismiss:focus-visible,
.vf-side-nav__item:focus-visible,
.vf-breadcrumbs__link:focus-visible,
.vf-tabs__tab:focus-visible {
  outline: 2px solid var(--vf-focus-ring);
  outline-offset: 2px;
}

/* src/styles/base/motion.css */
.vf-button__spinner,
.vf-loading-state__spinner {
  width: 1em;
  height: 1em;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 999px;
  animation: vf-spin 800ms linear infinite;
}
@keyframes vf-spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes vf-skeleton {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: -100% 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .vf-button__spinner,
  .vf-loading-state__spinner,
  .vf-skeleton,
  .vf-tooltip__content {
    animation: none;
    transition: none;
  }
}

/* src/styles/actions/button.css */
.vf-button,
.vf-icon-button,
.vf-toolbar-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--vf-radius-md);
  color: var(--vf-text);
  background: var(--vf-surface);
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition:
    background-color var(--vf-transition-fast),
    border-color var(--vf-transition-fast),
    color var(--vf-transition-fast),
    box-shadow var(--vf-transition-fast),
    opacity var(--vf-transition-fast);
}
.vf-button:hover:not(:disabled),
.vf-icon-button:hover:not(:disabled),
.vf-toolbar-button:hover:not(:disabled) {
  background: var(--vf-surface-subtle);
}
.vf-button {
  gap: var(--vf-space-2);
  min-height: var(--vf-control-height);
  padding: 0 var(--vf-control-padding-x);
  font-size: var(--vf-font-size-md);
  white-space: nowrap;
}
.vf-button--sm {
  min-height: 30px;
  padding-inline: 10px;
  font-size: var(--vf-font-size-sm);
}
.vf-button--lg {
  min-height: 42px;
  padding-inline: 16px;
  font-size: var(--vf-font-size-lg);
}
.vf-button--full-width {
  width: 100%;
}
.vf-button--default,
.vf-icon-button--default {
  border-color: var(--vf-border);
}
.vf-button--primary,
.vf-icon-button--primary {
  border-color: var(--vf-primary);
  color: #ffffff;
  background: var(--vf-primary);
}
.vf-button--primary:hover:not(:disabled),
.vf-icon-button--primary:hover:not(:disabled) {
  border-color: var(--vf-primary-hover);
  background: var(--vf-primary-hover);
}
.vf-button--danger,
.vf-icon-button--danger {
  border-color: var(--vf-danger);
  color: #ffffff;
  background: var(--vf-danger);
}
.vf-button--danger:hover:not(:disabled),
.vf-icon-button--danger:hover:not(:disabled) {
  background: color-mix(in srgb, var(--vf-danger) 88%, #000000);
}
.vf-button--ghost,
.vf-icon-button--ghost {
  background: transparent;
}
.vf-button--subtle,
.vf-icon-button--subtle {
  border-color: transparent;
  background: var(--vf-surface-subtle);
}
.vf-toolbar-button--subtle {
  border-color: transparent;
  background: var(--vf-surface-subtle);
}
.vf-button__label,
.vf-button__slot {
  display: inline-flex;
  align-items: center;
}

/* src/styles/actions/icon.css */
.vf-icon {
  display: inline-block;
  flex: 0 0 auto;
  color: currentColor;
  vertical-align: middle;
}

/* src/styles/actions/button-group.css */
.vf-button-group,
.vf-inline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--vf-space-2);
}
.vf-button-group--attached {
  gap: 0;
}
.vf-button-group--vertical {
  flex-direction: column;
  align-items: stretch;
}
.vf-button-group--sm .vf-button,
.vf-button-group--sm .vf-icon-button,
.vf-button-group--sm .vf-toolbar-button {
  min-height: 30px;
  font-size: var(--vf-font-size-sm);
}
.vf-button-group--attached .vf-button:not(:first-child),
.vf-button-group--attached .vf-icon-button:not(:first-child),
.vf-button-group--attached .vf-toolbar-button:not(:first-child) {
  margin-left: -1px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.vf-button-group--attached .vf-button:not(:last-child),
.vf-button-group--attached .vf-icon-button:not(:last-child),
.vf-button-group--attached .vf-toolbar-button:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

/* src/styles/actions/icon-button.css */
.vf-icon-button {
  width: var(--vf-control-height);
  height: var(--vf-control-height);
  padding: 0;
}
.vf-icon-button--xs {
  width: 24px;
  height: 24px;
  border-radius: var(--vf-radius-sm);
}
.vf-icon-button--sm {
  width: 30px;
  height: 30px;
}
.vf-icon-button--lg {
  width: 42px;
  height: 42px;
}

/* src/styles/actions/toolbar-button.css */
.vf-toolbar-button {
  gap: var(--vf-space-2);
  min-height: 30px;
  border-color: var(--vf-border);
  border-radius: var(--vf-radius-md);
  padding: 0 9px;
  font-size: var(--vf-font-size-sm);
  font-weight: 700;
  white-space: nowrap;
}
.vf-toolbar-button--md {
  min-height: var(--vf-control-height);
  padding-inline: var(--vf-control-padding-x);
  font-size: var(--vf-font-size-md);
}
.vf-toolbar-button--primary {
  border-color: var(--vf-primary);
  color: #ffffff;
  background: var(--vf-primary);
}
.vf-toolbar-button--danger {
  border-color: var(--vf-danger);
  color: #ffffff;
  background: var(--vf-danger);
}
.vf-toolbar-button--ghost {
  border-color: transparent;
  background: transparent;
}
.vf-toolbar-button--active,
.vf-toolbar-button[aria-pressed=true] {
  border-color: color-mix(in srgb, var(--vf-primary) 45%, var(--vf-border));
  color: var(--vf-primary);
  background: var(--vf-primary-soft);
}
.vf-toolbar-button__icon,
.vf-segmented-control__icon {
  display: inline-flex;
  align-items: center;
}

/* src/styles/actions/toggle-button.css */
.vf-toggle-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--vf-space-1);
  min-height: var(--vf-control-height);
  border: 1px solid var(--vf-border);
  border-radius: var(--vf-radius-md);
  padding: 0 var(--vf-control-padding-x);
  color: var(--vf-text);
  background: var(--vf-surface);
  font: inherit;
  font-size: var(--vf-font-size-md);
  font-weight: 680;
  cursor: pointer;
  transition:
    border-color var(--vf-transition-fast),
    background-color var(--vf-transition-fast),
    box-shadow var(--vf-transition-fast);
}
.vf-toggle-button--sm {
  min-height: 30px;
  padding-inline: 10px;
  font-size: var(--vf-font-size-sm);
}
.vf-toggle-button--lg {
  min-height: 42px;
  padding-inline: 14px;
  font-size: var(--vf-font-size-lg);
}
.vf-toggle-button:hover:not(:disabled) {
  border-color: var(--vf-border-strong);
  background: var(--vf-surface-subtle);
}
.vf-toggle-button--pressed {
  border-color: var(--vf-primary);
  color: var(--vf-primary);
  background: var(--vf-primary-soft);
  box-shadow: inset 0 0 0 1px var(--vf-primary);
}
.vf-toggle-button--quiet {
  border-color: transparent;
  background: transparent;
}
.vf-toggle-button--outline {
  background: transparent;
}
.vf-toggle-button__icon {
  display: inline-flex;
  flex: 0 0 auto;
}
.vf-toggle-button:disabled {
  cursor: not-allowed;
  opacity: 0.56;
}

/* src/styles/actions/toggle-button-group.css */
.vf-toggle-button-group {
  display: inline-flex;
  align-items: stretch;
  width: fit-content;
}
.vf-toggle-button-group--vertical {
  flex-direction: column;
}
.vf-toggle-button-group .vf-toggle-button {
  position: relative;
  border-radius: 0;
}
.vf-toggle-button-group--horizontal .vf-toggle-button:first-child {
  border-top-left-radius: var(--vf-radius-md);
  border-bottom-left-radius: var(--vf-radius-md);
}
.vf-toggle-button-group--horizontal .vf-toggle-button:last-child {
  border-top-right-radius: var(--vf-radius-md);
  border-bottom-right-radius: var(--vf-radius-md);
}
.vf-toggle-button-group--vertical .vf-toggle-button:first-child {
  border-top-left-radius: var(--vf-radius-md);
  border-top-right-radius: var(--vf-radius-md);
}
.vf-toggle-button-group--vertical .vf-toggle-button:last-child {
  border-bottom-right-radius: var(--vf-radius-md);
  border-bottom-left-radius: var(--vf-radius-md);
}
.vf-toggle-button-group--horizontal .vf-toggle-button:not(:first-child) {
  margin-left: -1px;
}
.vf-toggle-button-group--vertical .vf-toggle-button:not(:first-child) {
  margin-top: -1px;
}
.vf-toggle-button-group .vf-toggle-button:hover,
.vf-toggle-button-group .vf-toggle-button:focus-visible,
.vf-toggle-button-group .vf-toggle-button--pressed {
  z-index: 1;
}
.vf-toggle-button-group--disabled {
  opacity: 0.72;
}

/* src/styles/actions/segmented-control.css */
.vf-segmented-control {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border: 1px solid var(--vf-border);
  border-radius: var(--vf-radius-md);
  padding: 2px;
  background: var(--vf-surface-subtle);
}
.vf-segmented-control__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--vf-space-1);
  min-height: 28px;
  border: 1px solid transparent;
  border-radius: calc(var(--vf-radius-md) - 2px);
  padding: 0 10px;
  color: var(--vf-text-muted);
  background: transparent;
  font: inherit;
  font-size: var(--vf-font-size-sm);
  font-weight: 700;
  cursor: pointer;
}
.vf-segmented-control--md .vf-segmented-control__item {
  min-height: 32px;
  padding-inline: 12px;
  font-size: var(--vf-font-size-md);
}
.vf-segmented-control__item:hover:not(:disabled) {
  color: var(--vf-text);
  background: var(--vf-surface);
}
.vf-segmented-control__item--selected {
  border-color: var(--vf-border);
  color: var(--vf-text-strong);
  background: var(--vf-surface);
  box-shadow: var(--vf-shadow-sm);
}

/* src/styles/typography/typography.css */
.vf-text {
  margin: 0;
  color: var(--vf-text);
  line-height: var(--vf-line-height-md);
}
.vf-text--sm {
  font-size: var(--vf-font-size-sm);
}
.vf-text--md {
  font-size: var(--vf-font-size-md);
}
.vf-text--lg {
  font-size: var(--vf-font-size-lg);
}
.vf-text--muted {
  color: var(--vf-text-muted);
}
.vf-text--strong {
  color: var(--vf-text-strong);
  font-weight: 700;
}
.vf-text--danger {
  color: var(--vf-danger);
}
.vf-text--success {
  color: var(--vf-success);
}
.vf-text--warning {
  color: var(--vf-warning);
}
.vf-heading {
  margin: 0;
  color: var(--vf-text-strong);
  font-weight: 760;
  line-height: var(--vf-line-height-tight);
}
.vf-heading--sm {
  font-size: var(--vf-font-size-lg);
}
.vf-heading--md {
  font-size: var(--vf-font-size-xl);
}
.vf-heading--lg {
  font-size: 24px;
}
.vf-label {
  display: inline-flex;
  gap: var(--vf-space-1);
  color: var(--vf-text-strong);
  font-weight: 720;
  line-height: var(--vf-line-height-md);
}
.vf-label--sm,
.vf-caption {
  font-size: var(--vf-font-size-sm);
}
.vf-label--md {
  font-size: var(--vf-font-size-md);
}
.vf-caption {
  display: inline-block;
  margin: 0;
  color: var(--vf-text-muted);
  line-height: var(--vf-line-height-md);
}
.vf-code-text {
  display: inline-flex;
  width: fit-content;
  border: 1px solid var(--vf-border);
  border-radius: var(--vf-radius-sm);
  padding: 2px 6px;
  color: var(--vf-text-strong);
  background: var(--vf-surface-subtle);
  font-family:
    ui-monospace,
    SFMono-Regular,
    Consolas,
    "Liberation Mono",
    monospace;
  font-size: var(--vf-font-size-sm);
  line-height: var(--vf-line-height-md);
}

/* src/styles/feedback/badge.css */
.vf-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border: 1px solid var(--vf-border);
  border-radius: 999px;
  color: var(--vf-text);
  background: var(--vf-surface-subtle);
  font-weight: 750;
}
.vf-badge--sm {
  min-height: 22px;
  padding: 2px 8px;
  font-size: var(--vf-font-size-xs);
}
.vf-badge--md {
  min-height: 26px;
  padding: 3px 10px;
  font-size: var(--vf-font-size-sm);
}
.vf-badge--success {
  border-color: color-mix(in srgb, var(--vf-success) 35%, transparent);
  color: var(--vf-success);
  background: var(--vf-success-soft);
}
.vf-badge--warning {
  border-color: color-mix(in srgb, var(--vf-warning) 35%, transparent);
  color: var(--vf-warning);
  background: var(--vf-warning-soft);
}
.vf-badge--danger {
  border-color: color-mix(in srgb, var(--vf-danger) 35%, transparent);
  color: var(--vf-danger);
  background: var(--vf-danger-soft);
}
.vf-badge--info {
  border-color: color-mix(in srgb, var(--vf-info) 35%, transparent);
  color: var(--vf-info);
  background: var(--vf-info-soft);
}
.vf-badge--solid {
  color: #ffffff;
}
.vf-badge--solid.vf-badge--neutral {
  border-color: var(--vf-text-muted);
  background: var(--vf-text-muted);
}
.vf-badge--solid.vf-badge--success {
  border-color: var(--vf-success);
  background: var(--vf-success);
}
.vf-badge--solid.vf-badge--warning {
  border-color: var(--vf-warning);
  background: var(--vf-warning);
}
.vf-badge--solid.vf-badge--danger {
  border-color: var(--vf-danger);
  background: var(--vf-danger);
}
.vf-badge--solid.vf-badge--info {
  border-color: var(--vf-info);
  background: var(--vf-info);
}

/* src/styles/forms/field.css */
.vf-field {
  display: grid;
  gap: var(--vf-space-2);
  min-width: 0;
}
.vf-field--horizontal {
  grid-template-columns: minmax(140px, 0.36fr) minmax(0, 1fr);
  align-items: start;
  column-gap: var(--vf-space-4);
}
.vf-field--horizontal .vf-field__description,
.vf-field--horizontal .vf-field__message {
  grid-column: 2;
}
.vf-field--horizontal > :not(.vf-field__label, .vf-field__description, .vf-field__message) {
  grid-column: 2;
}
.vf-field__label {
  color: var(--vf-text-strong);
  font-size: var(--vf-font-size-sm);
  font-weight: 720;
}
.vf-field__required {
  color: var(--vf-danger);
}
.vf-field__description,
.vf-field__message {
  color: var(--vf-text-muted);
  font-size: var(--vf-font-size-sm);
  line-height: var(--vf-line-height-md);
}
.vf-field--disabled {
  opacity: 0.68;
}

/* src/styles/forms/input.css */
.vf-input,
.vf-select {
  width: 100%;
  min-height: var(--vf-control-height);
  border: 1px solid var(--vf-border);
  border-radius: var(--vf-radius-md);
  padding: 0 var(--vf-control-padding-x);
  color: var(--vf-text);
  background: var(--vf-surface);
  font-size: var(--vf-font-size-md);
  transition:
    border-color var(--vf-transition-fast),
    box-shadow var(--vf-transition-fast),
    background-color var(--vf-transition-fast);
}
.vf-input--sm,
.vf-select--sm {
  min-height: 30px;
  padding-inline: 10px;
  font-size: var(--vf-font-size-sm);
}
.vf-input--lg,
.vf-select--lg {
  min-height: 42px;
  padding-inline: 14px;
  font-size: var(--vf-font-size-lg);
}
.vf-input:hover:not(:disabled),
.vf-select:hover:not(:disabled) {
  border-color: var(--vf-border-strong);
}
.vf-input[aria-invalid=true],
.vf-select[aria-invalid=true],
.vf-checkbox[aria-invalid=true] {
  border-color: var(--vf-danger);
}
.vf-textarea {
  min-height: 96px;
  padding-block: 9px;
  resize: vertical;
  line-height: var(--vf-line-height-md);
}
.vf-search-input {
  position: relative;
  display: grid;
}
.vf-search-input .vf-input {
  padding-left: 34px;
}
.vf-search-input__icon {
  position: absolute;
  left: 12px;
  top: 50%;
  color: var(--vf-text-muted);
  transform: translateY(-50%);
  pointer-events: none;
}

/* src/styles/forms/checkbox.css */
.vf-checkbox-field {
  display: inline-flex;
  align-items: flex-start;
  gap: var(--vf-space-2);
  color: var(--vf-text);
  font-size: var(--vf-font-size-md);
  line-height: var(--vf-line-height-md);
}
.vf-checkbox {
  width: 16px;
  height: 16px;
  margin: 2px 0 0;
  accent-color: var(--vf-primary);
}
.vf-checkbox--sm {
  width: 14px;
  height: 14px;
}
.vf-checkbox--lg {
  width: 18px;
  height: 18px;
}

/* src/styles/forms/radio.css */
.vf-radio-field {
  display: inline-flex;
  align-items: flex-start;
  gap: var(--vf-space-2);
  color: var(--vf-text);
  font-size: var(--vf-font-size-md);
  line-height: var(--vf-line-height-md);
}
.vf-radio {
  width: 16px;
  height: 16px;
  margin: 2px 0 0;
  accent-color: var(--vf-primary);
}
.vf-radio[aria-invalid=true] {
  outline: 1px solid var(--vf-danger);
  outline-offset: 1px;
}
.vf-radio-field__content {
  display: grid;
  gap: 2px;
  min-width: 0;
}
.vf-radio-field__label {
  color: var(--vf-text-strong);
  font-weight: 680;
}
.vf-radio-field__description {
  color: var(--vf-text-muted);
  font-size: var(--vf-font-size-sm);
  line-height: var(--vf-line-height-md);
}

/* src/styles/forms/radio-group.css */
.vf-radio-group {
  display: grid;
  gap: var(--vf-space-2);
  min-width: 0;
  margin: 0;
  border: 0;
  padding: 0;
  color: var(--vf-text);
}
.vf-radio-group__legend {
  margin: 0 0 var(--vf-space-1);
  padding: 0;
  color: var(--vf-text-strong);
  font-weight: 720;
}
.vf-radio-group__description,
.vf-radio-group__error {
  font-size: var(--vf-font-size-sm);
  line-height: var(--vf-line-height-md);
}
.vf-radio-group__description {
  color: var(--vf-text-muted);
}
.vf-radio-group__error {
  color: var(--vf-danger);
}
.vf-radio-group__options {
  display: grid;
  gap: var(--vf-space-2);
}
.vf-radio-group--horizontal .vf-radio-group__options {
  display: flex;
  flex-wrap: wrap;
  gap: var(--vf-space-3);
}
.vf-radio-group--disabled {
  opacity: 0.68;
}

/* src/styles/forms/switch.css */
.vf-switch {
  display: inline-flex;
  align-items: flex-start;
  gap: var(--vf-space-2);
  color: var(--vf-text);
  cursor: pointer;
}
.vf-switch__input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.vf-switch__control {
  position: relative;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  width: 46px;
  height: 26px;
  border: 1px solid var(--vf-border-strong);
  border-radius: 999px;
  color: var(--vf-text-muted);
  background: var(--vf-surface-subtle);
  transition:
    background-color var(--vf-transition-fast),
    border-color var(--vf-transition-fast),
    box-shadow var(--vf-transition-fast);
}
.vf-switch__thumb {
  position: absolute;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: var(--vf-surface);
  box-shadow: var(--vf-shadow-sm);
  transition: transform var(--vf-transition-fast);
}
.vf-switch__state {
  position: absolute;
  font-size: 9px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}
.vf-switch__state--on {
  left: 7px;
  color: #ffffff;
  opacity: 0;
}
.vf-switch__state--off {
  right: 5px;
}
.vf-switch__input:checked + .vf-switch__control {
  border-color: var(--vf-primary);
  color: #ffffff;
  background: var(--vf-primary);
}
.vf-switch__input:checked + .vf-switch__control .vf-switch__thumb {
  transform: translateX(20px);
}
.vf-switch__input:checked + .vf-switch__control .vf-switch__state--on {
  opacity: 1;
}
.vf-switch__input:checked + .vf-switch__control .vf-switch__state--off {
  opacity: 0;
}
.vf-switch__input[aria-invalid=true] + .vf-switch__control {
  border-color: var(--vf-danger);
}
.vf-switch:has(.vf-switch__input:disabled) {
  cursor: not-allowed;
  opacity: 0.56;
}
.vf-switch__content {
  display: grid;
  gap: 2px;
  min-width: 0;
}
.vf-switch__label {
  color: var(--vf-text-strong);
  font-weight: 680;
}
.vf-switch__description {
  color: var(--vf-text-muted);
  font-size: var(--vf-font-size-sm);
  line-height: var(--vf-line-height-md);
}

/* src/styles/forms/validation-message.css */
.vf-validation-message--success {
  color: var(--vf-success);
}
.vf-validation-message--error,
.vf-validation-message--danger {
  color: var(--vf-danger);
}
.vf-validation-message--info {
  color: var(--vf-info);
}
.vf-validation-message--warning {
  color: var(--vf-warning);
}
.vf-validation-message {
  font-size: var(--vf-font-size-sm);
  line-height: var(--vf-line-height-md);
}

/* src/styles/forms/rating.css */
.vf-rating {
  display: inline-grid;
  gap: var(--vf-space-2);
  min-width: 0;
  margin: 0;
  border: 0;
  padding: 0;
  color: var(--vf-text);
}
.vf-rating__label {
  padding: 0;
  color: var(--vf-text-strong);
  font-size: var(--vf-font-size-sm);
  font-weight: 720;
}
.vf-rating__items {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}
.vf-rating__item {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--vf-text-muted);
}
.vf-rating:not(.vf-rating--read-only) .vf-rating__item {
  cursor: pointer;
}
.vf-rating__input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.vf-rating__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: calc(var(--vf-control-height) - 6px);
  height: calc(var(--vf-control-height) - 6px);
  border-radius: var(--vf-radius-sm);
}
.vf-rating__item--selected {
  color: var(--vf-warning);
}
.vf-rating__item--selected .vf-icon {
  fill: currentColor;
}
.vf-rating__item:hover .vf-rating__icon {
  color: var(--vf-warning);
  background: var(--vf-warning-soft);
}
.vf-rating__input:focus-visible + .vf-rating__icon {
  outline: 2px solid var(--vf-focus-ring);
  outline-offset: 2px;
}
.vf-rating--disabled {
  opacity: 0.62;
}
.vf-rating--disabled .vf-rating__item {
  cursor: not-allowed;
}
.vf-rating--read-only {
  gap: var(--vf-space-1);
}

/* src/styles/forms/slider.css */
.vf-slider {
  display: grid;
  gap: var(--vf-space-2);
  min-width: 0;
}
.vf-slider__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--vf-space-3);
}
.vf-slider__label {
  color: var(--vf-text-strong);
  font-size: var(--vf-font-size-sm);
  font-weight: 720;
}
.vf-slider__value,
.vf-slider__description {
  color: var(--vf-text-muted);
  font-size: var(--vf-font-size-sm);
  line-height: var(--vf-line-height-md);
}
.vf-slider__track {
  display: flex;
  align-items: center;
  min-height: var(--vf-control-height);
}
.vf-slider__control {
  width: 100%;
  margin: 0;
  accent-color: var(--vf-primary);
  cursor: pointer;
}
.vf-slider__control::-webkit-slider-runnable-track {
  height: 6px;
  border-radius: 999px;
  background:
    linear-gradient(
      to right,
      var(--vf-primary) var(--vf-slider-progress),
      var(--vf-border) var(--vf-slider-progress));
}
.vf-slider__control::-webkit-slider-thumb {
  width: 16px;
  height: 16px;
  margin-top: -5px;
  border: 2px solid var(--vf-primary);
  border-radius: 50%;
  background: var(--vf-surface-raised);
  box-shadow: var(--vf-shadow-sm);
  appearance: none;
}
.vf-slider__control::-moz-range-track {
  height: 6px;
  border-radius: 999px;
  background: var(--vf-border);
}
.vf-slider__control::-moz-range-progress {
  height: 6px;
  border-radius: 999px;
  background: var(--vf-primary);
}
.vf-slider__control::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border: 2px solid var(--vf-primary);
  border-radius: 50%;
  background: var(--vf-surface-raised);
  box-shadow: var(--vf-shadow-sm);
}
.vf-slider__control:focus-visible {
  outline: 2px solid var(--vf-focus-ring);
  outline-offset: 3px;
}
.vf-slider--disabled {
  opacity: 0.62;
}
.vf-slider--disabled .vf-slider__control {
  cursor: not-allowed;
}

/* src/styles/forms/number-input.css */
.vf-number-input {
  font-variant-numeric: tabular-nums;
}

/* src/styles/forms/date-input.css */
.vf-date-input {
  font-variant-numeric: tabular-nums;
}

/* src/styles/forms/datetime-input.css */
.vf-datetime-input {
  font-variant-numeric: tabular-nums;
}

/* src/styles/forms/multi-select.css */
.vf-multi-select {
  position: relative;
  display: grid;
  min-width: 0;
}
.vf-multi-select__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--vf-space-2);
  width: 100%;
  min-height: var(--vf-control-height);
  border: 1px solid var(--vf-border);
  border-radius: var(--vf-radius-md);
  padding: 4px var(--vf-control-padding-x);
  color: var(--vf-text);
  background: var(--vf-surface);
  font: inherit;
  text-align: left;
  cursor: pointer;
}
.vf-multi-select__trigger:hover:not(:disabled) {
  border-color: var(--vf-border-strong);
}
.vf-multi-select--invalid .vf-multi-select__trigger {
  border-color: var(--vf-danger);
}
.vf-multi-select__trigger:disabled {
  cursor: not-allowed;
  opacity: 0.56;
}
.vf-multi-select__value {
  display: flex;
  flex: 1 1 auto;
  flex-wrap: wrap;
  gap: 4px;
  min-width: 0;
}
.vf-multi-select__placeholder {
  color: var(--vf-text-muted);
}
.vf-multi-select__chip {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  border: 1px solid color-mix(in srgb, var(--vf-primary) 35%, var(--vf-border));
  border-radius: 999px;
  padding: 1px 8px;
  color: var(--vf-primary);
  background: var(--vf-primary-soft);
  font-size: var(--vf-font-size-sm);
  font-weight: 720;
}
.vf-multi-select__chevron {
  color: var(--vf-text-muted);
}
.vf-multi-select__popover {
  position: absolute;
  z-index: 35;
  top: calc(100% + var(--vf-space-1));
  left: 0;
  display: grid;
  gap: var(--vf-space-2);
  width: min(100vw, max(100%, 280px));
  max-height: 320px;
  overflow: auto;
  border: 1px solid var(--vf-border);
  border-radius: var(--vf-radius-lg);
  padding: var(--vf-space-2);
  background: var(--vf-surface-raised);
  box-shadow: var(--vf-shadow-md);
}
.vf-multi-select__search {
  width: 100%;
}
.vf-multi-select__list {
  display: grid;
  gap: var(--vf-space-1);
}
.vf-multi-select__option {
  display: flex;
  align-items: flex-start;
  gap: var(--vf-space-2);
  border-radius: var(--vf-radius-md);
  padding: var(--vf-space-2);
  cursor: pointer;
}
.vf-multi-select__option:hover {
  background: var(--vf-surface-subtle);
}
.vf-multi-select__option--selected {
  background: var(--vf-primary-soft);
}
.vf-multi-select__option--disabled {
  cursor: not-allowed;
  opacity: 0.56;
}
.vf-multi-select__option-main {
  display: grid;
  gap: 2px;
  min-width: 0;
}
.vf-multi-select__option-label {
  color: var(--vf-text-strong);
  font-weight: 680;
}
.vf-multi-select__option-description,
.vf-multi-select__empty {
  color: var(--vf-text-muted);
  font-size: var(--vf-font-size-sm);
}
.vf-multi-select__clear {
  width: fit-content;
  border: 0;
  border-radius: var(--vf-radius-sm);
  padding: var(--vf-space-1) var(--vf-space-2);
  color: var(--vf-primary);
  background: transparent;
  font: inherit;
  font-size: var(--vf-font-size-sm);
  font-weight: 720;
  cursor: pointer;
}
.vf-multi-select__clear:hover {
  background: var(--vf-primary-soft);
}

/* src/styles/forms/autocomplete.css */
.vf-autocomplete {
  position: relative;
  min-width: 0;
}
.vf-autocomplete__control {
  display: flex;
  align-items: center;
  min-width: 0;
  border: 1px solid var(--vf-border);
  border-radius: var(--vf-radius-md);
  color: var(--vf-text);
  background: var(--vf-surface);
  transition:
    border-color var(--vf-transition-fast),
    box-shadow var(--vf-transition-fast),
    background-color var(--vf-transition-fast);
}
.vf-autocomplete__control:hover {
  border-color: var(--vf-border-strong);
}
.vf-autocomplete__control:focus-within {
  border-color: var(--vf-focus-ring);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--vf-focus-ring) 22%, transparent);
}
.vf-autocomplete--invalid .vf-autocomplete__control {
  border-color: var(--vf-danger);
}
.vf-autocomplete--invalid .vf-autocomplete__control:focus-within {
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--vf-danger) 20%, transparent);
}
.vf-autocomplete__input.vf-input {
  min-width: 0;
  border: 0;
  border-radius: inherit;
  box-shadow: none;
}
.vf-autocomplete__input.vf-input:focus-visible {
  outline: 0;
}
.vf-autocomplete__actions {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 2px;
  padding-right: 3px;
}
.vf-autocomplete__clear.vf-icon-button,
.vf-autocomplete__indicator.vf-icon-button {
  width: 28px;
  height: 28px;
  color: var(--vf-text-muted);
}
.vf-autocomplete__clear.vf-icon-button:hover:not(:disabled),
.vf-autocomplete__indicator.vf-icon-button:hover:not(:disabled) {
  color: var(--vf-text);
  background: var(--vf-surface-subtle);
}
.vf-autocomplete__loading {
  width: 14px;
  height: 14px;
  margin-inline: var(--vf-space-2);
  border: 2px solid var(--vf-border-strong);
  border-top-color: var(--vf-primary);
  border-radius: 50%;
  animation: vf-autocomplete-spin 800ms linear infinite;
}
.vf-autocomplete--disabled .vf-autocomplete__control,
.vf-autocomplete--read-only .vf-autocomplete__control {
  background: var(--vf-surface-subtle);
}
.vf-autocomplete--disabled .vf-autocomplete__control {
  cursor: not-allowed;
  opacity: 0.62;
}
.vf-autocomplete--read-only .vf-autocomplete__input {
  cursor: default;
}
.vf-autocomplete__layer {
  position: fixed;
  top: var(--vf-overlay-y, 0);
  left: var(--vf-overlay-x, 0);
  width: var(--vf-overlay-anchor-width, min(360px, calc(100vw - (var(--vf-space-4) * 2))));
  max-width: calc(100vw - (var(--vf-space-4) * 2));
}
.vf-autocomplete__listbox {
  max-height: min(320px, calc(100vh - (var(--vf-space-6) * 2)));
  overflow: auto;
  border: 1px solid var(--vf-border);
  border-radius: var(--vf-radius-lg);
  padding: var(--vf-space-1);
  color: var(--vf-text);
  background: var(--vf-surface-raised);
  box-shadow: var(--vf-shadow-md);
}
.vf-autocomplete__option {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--vf-space-3);
  min-width: 0;
  border: 1px solid transparent;
  border-radius: var(--vf-radius-md);
  padding: var(--vf-space-2) var(--vf-space-3);
  cursor: pointer;
}
.vf-autocomplete__option--active {
  border-color: var(--vf-border-strong);
  background: var(--vf-surface-subtle);
}
.vf-autocomplete__option--selected {
  color: var(--vf-primary);
  background: var(--vf-primary-soft);
}
.vf-autocomplete__option--active.vf-autocomplete__option--selected {
  border-color: var(--vf-primary);
}
.vf-autocomplete__option--disabled {
  cursor: not-allowed;
  opacity: 0.58;
}
.vf-autocomplete__option-main {
  display: grid;
  gap: 2px;
  min-width: 0;
}
.vf-autocomplete__option-label {
  color: var(--vf-text-strong);
  font-weight: 680;
}
.vf-autocomplete__option-description,
.vf-autocomplete__status {
  color: var(--vf-text-muted);
  font-size: var(--vf-font-size-sm);
  line-height: var(--vf-line-height-md);
}
.vf-autocomplete__status {
  padding: var(--vf-space-3);
}
@keyframes vf-autocomplete-spin {
  to {
    transform: rotate(360deg);
  }
}
@media (prefers-reduced-motion: reduce) {
  .vf-autocomplete__loading {
    animation: none;
  }
}

/* src/styles/forms/transfer-list.css */
.vf-transfer-list {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: stretch;
  gap: var(--vf-space-3);
  min-width: 0;
}
.vf-transfer-list__panel {
  display: grid;
  grid-template-rows: auto auto auto minmax(0, 1fr);
  gap: var(--vf-space-3);
  min-width: 0;
  min-height: 320px;
  border: 1px solid var(--vf-border);
  border-radius: var(--vf-radius-lg);
  padding: var(--vf-space-3);
  background: var(--vf-surface);
}
.vf-transfer-list--invalid .vf-transfer-list__panel {
  border-color: var(--vf-danger);
}
.vf-transfer-list--disabled,
.vf-transfer-list--read-only {
  color: var(--vf-text-muted);
}
.vf-transfer-list__panel-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--vf-space-3);
  min-width: 0;
}
.vf-transfer-list__panel-heading {
  display: grid;
  gap: var(--vf-space-1);
  min-width: 0;
}
.vf-transfer-list__panel-title {
  margin: 0;
  color: var(--vf-text-strong);
  font-size: var(--vf-font-size-md);
  line-height: var(--vf-line-height-tight);
}
.vf-transfer-list__panel-description {
  margin: 0;
  color: var(--vf-text-muted);
  font-size: var(--vf-font-size-sm);
  line-height: var(--vf-line-height-md);
}
.vf-transfer-list__panel-count {
  display: inline-flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: var(--vf-space-1);
}
.vf-transfer-list__search {
  width: 100%;
}
.vf-transfer-list__select-all {
  display: inline-flex;
  align-items: center;
  gap: var(--vf-space-2);
  width: fit-content;
  color: var(--vf-text-muted);
  font-size: var(--vf-font-size-sm);
  line-height: var(--vf-line-height-md);
  cursor: pointer;
}
.vf-transfer-list__select-all:has(input:disabled) {
  cursor: not-allowed;
  opacity: 0.62;
}
.vf-transfer-list__options {
  display: grid;
  align-content: start;
  gap: var(--vf-space-1);
  min-height: 168px;
  max-height: 360px;
  min-width: 0;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 2px;
}
.vf-transfer-list__option {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: flex-start;
  gap: var(--vf-space-2);
  border: 1px solid transparent;
  border-radius: var(--vf-radius-md);
  padding: var(--vf-space-2);
  color: var(--vf-text);
  cursor: pointer;
}
.vf-transfer-list__option:hover:not(.vf-transfer-list__option--disabled) {
  background: var(--vf-surface-subtle);
}
.vf-transfer-list__option--active:not(.vf-transfer-list__option--disabled) {
  border-color: color-mix(in srgb, var(--vf-primary) 32%, var(--vf-border));
}
.vf-transfer-list__option--selected {
  border-color: color-mix(in srgb, var(--vf-primary) 45%, var(--vf-border));
  background: var(--vf-primary-soft);
}
.vf-transfer-list__option--disabled {
  cursor: not-allowed;
  opacity: 0.58;
}
.vf-transfer-list__option-content {
  display: grid;
  gap: 2px;
  min-width: 0;
}
.vf-transfer-list__option-label {
  color: var(--vf-text-strong);
  font-weight: 680;
  overflow-wrap: anywhere;
}
.vf-transfer-list__option-description,
.vf-transfer-list__empty {
  color: var(--vf-text-muted);
  font-size: var(--vf-font-size-sm);
  line-height: var(--vf-line-height-md);
}
.vf-transfer-list__empty {
  display: grid;
  min-height: 120px;
  place-items: center;
  border: 1px dashed var(--vf-border);
  border-radius: var(--vf-radius-md);
  padding: var(--vf-space-4);
  text-align: center;
}
.vf-transfer-list__actions {
  display: grid;
  align-content: center;
  gap: var(--vf-space-2);
  min-width: 148px;
}
.vf-transfer-list__actions .vf-button {
  justify-content: center;
}
@media (max-width: 760px) {
  .vf-transfer-list {
    grid-template-columns: minmax(0, 1fr);
  }
  .vf-transfer-list__actions {
    grid-row: 2;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-width: 0;
  }
  .vf-transfer-list__panel {
    min-height: 280px;
  }
}

/* src/styles/feedback/empty-state.css */
.vf-empty-state,
.vf-error-state,
.vf-loading-state,
.vf-card,
.vf-panel {
  color: var(--vf-text);
  background: var(--vf-surface);
}
.vf-empty-state,
.vf-error-state,
.vf-loading-state {
  display: grid;
  gap: var(--vf-space-2);
  justify-items: start;
  border: 1px solid var(--vf-border);
  border-radius: var(--vf-radius-lg);
  padding: var(--vf-space-5);
}
.vf-error-state {
  border-color: color-mix(in srgb, var(--vf-danger) 35%, var(--vf-border));
}
.vf-empty-state__title,
.vf-error-state__title,
.vf-loading-state__title {
  margin: 0;
  color: var(--vf-text-strong);
  font-weight: 760;
}
.vf-empty-state__description,
.vf-error-state__description,
.vf-loading-state__description {
  margin: 0;
  color: var(--vf-text-muted);
}
.vf-state-actions {
  display: inline-flex;
  flex-wrap: wrap;
  gap: var(--vf-space-2);
  margin-top: var(--vf-space-2);
}

/* src/styles/feedback/loading-state.css */
.vf-loading-state--sm {
  padding: var(--vf-space-3);
  font-size: var(--vf-font-size-sm);
}
.vf-loading-state--lg {
  padding: var(--vf-space-6);
  font-size: var(--vf-font-size-lg);
}

/* src/styles/feedback/alert.css */
.vf-inline-message {
  display: grid;
  gap: var(--vf-space-1);
  border: 1px solid var(--vf-border);
  border-radius: var(--vf-radius-md);
  padding: var(--vf-space-3);
  color: var(--vf-text);
  background: var(--vf-surface-subtle);
}
.vf-inline-message__title {
  color: var(--vf-text-strong);
}
.vf-inline-message__content {
  color: var(--vf-text-muted);
  font-size: var(--vf-font-size-sm);
  line-height: var(--vf-line-height-md);
}
.vf-inline-message--success {
  border-color: color-mix(in srgb, var(--vf-success) 35%, var(--vf-border));
  background: var(--vf-success-soft);
}
.vf-inline-message--warning {
  border-color: color-mix(in srgb, var(--vf-warning) 35%, var(--vf-border));
  background: var(--vf-warning-soft);
}
.vf-inline-message--danger {
  border-color: color-mix(in srgb, var(--vf-danger) 35%, var(--vf-border));
  background: var(--vf-danger-soft);
}
.vf-inline-message--info {
  border-color: color-mix(in srgb, var(--vf-info) 35%, var(--vf-border));
  background: var(--vf-info-soft);
}

/* src/styles/feedback/toast.css */
.vf-toast-viewport {
  position: fixed;
  z-index: var(--vf-z-toast);
  display: grid;
  gap: var(--vf-space-2);
  width: min(420px, calc(100vw - 32px));
  max-width: calc(100vw - 32px);
  pointer-events: none;
}
.vf-toast-viewport--top-start {
  top: max(var(--vf-space-4), env(safe-area-inset-top));
  left: max(var(--vf-space-4), env(safe-area-inset-left));
}
.vf-toast-viewport--top-center {
  top: max(var(--vf-space-4), env(safe-area-inset-top));
  left: 50%;
  transform: translateX(-50%);
}
.vf-toast-viewport--top-end {
  top: max(var(--vf-space-4), env(safe-area-inset-top));
  right: max(var(--vf-space-4), env(safe-area-inset-right));
}
.vf-toast-viewport--bottom-start {
  bottom: max(var(--vf-space-4), env(safe-area-inset-bottom));
  left: max(var(--vf-space-4), env(safe-area-inset-left));
}
.vf-toast-viewport--bottom-center {
  bottom: max(var(--vf-space-4), env(safe-area-inset-bottom));
  left: 50%;
  transform: translateX(-50%);
}
.vf-toast-viewport--bottom-end {
  right: max(var(--vf-space-4), env(safe-area-inset-right));
  bottom: max(var(--vf-space-4), env(safe-area-inset-bottom));
}
.vf-toast {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: flex-start;
  gap: var(--vf-space-3);
  min-width: 0;
  border: 1px solid var(--vf-border);
  border-radius: var(--vf-radius-lg);
  padding: var(--vf-space-3);
  color: var(--vf-text);
  background: var(--vf-surface-raised);
  box-shadow: var(--vf-shadow-md);
  pointer-events: auto;
}
.vf-toast__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  color: var(--vf-text-muted);
  background: var(--vf-surface-subtle);
}
.vf-toast__content {
  display: grid;
  gap: 2px;
  min-width: 0;
}
.vf-toast__title {
  color: var(--vf-text-strong);
  font-size: var(--vf-font-size-md);
  line-height: var(--vf-line-height-tight);
  overflow-wrap: anywhere;
}
.vf-toast__description {
  color: var(--vf-text-muted);
  font-size: var(--vf-font-size-sm);
  line-height: var(--vf-line-height-md);
  overflow-wrap: anywhere;
}
.vf-toast__action {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}
.vf-toast__dismiss {
  margin-top: -4px;
}
.vf-toast--info {
  border-color: color-mix(in srgb, var(--vf-info) 35%, var(--vf-border));
}
.vf-toast--info .vf-toast__icon {
  color: var(--vf-info);
  background: var(--vf-info-soft);
}
.vf-toast--success {
  border-color: color-mix(in srgb, var(--vf-success) 35%, var(--vf-border));
}
.vf-toast--success .vf-toast__icon {
  color: var(--vf-success);
  background: var(--vf-success-soft);
}
.vf-toast--warning {
  border-color: color-mix(in srgb, var(--vf-warning) 45%, var(--vf-border));
}
.vf-toast--warning .vf-toast__icon {
  color: var(--vf-warning);
  background: var(--vf-warning-soft);
}
.vf-toast--error {
  border-color: color-mix(in srgb, var(--vf-danger) 45%, var(--vf-border));
}
.vf-toast--error .vf-toast__icon {
  color: var(--vf-danger);
  background: var(--vf-danger-soft);
}
@media (max-width: 560px) {
  .vf-toast-viewport {
    right: max(var(--vf-space-3), env(safe-area-inset-right));
    left: max(var(--vf-space-3), env(safe-area-inset-left));
    width: auto;
    max-width: none;
    transform: none;
  }
  .vf-toast {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }
  .vf-toast__action {
    grid-column: 2 / -1;
    justify-content: flex-start;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .vf-toast {
    animation: vf-toast-enter 140ms ease-out;
  }
}
@keyframes vf-toast-enter {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* src/styles/feedback/skeleton.css */
.vf-skeleton {
  display: block;
  width: var(--vf-skeleton-width, 100%);
  min-height: var(--vf-skeleton-height, 16px);
  border-radius: var(--vf-skeleton-radius, var(--vf-radius-md));
  background:
    linear-gradient(
      90deg,
      var(--vf-surface-subtle),
      color-mix(in srgb, var(--vf-surface-subtle) 55%, var(--vf-border)),
      var(--vf-surface-subtle));
  background-size: 220% 100%;
  animation: vf-skeleton 1.1s ease-in-out infinite;
}
.vf-skeleton--static {
  animation: none;
}

/* src/styles/layout/card.css */
.vf-card {
  min-width: 0;
  border-radius: var(--vf-radius-lg);
}
.vf-card--plain {
  background: transparent;
}
.vf-card--bordered {
  border: 1px solid var(--vf-border);
}
.vf-card--elevated {
  border: 1px solid var(--vf-border);
  background: var(--vf-surface-raised);
  box-shadow: var(--vf-shadow-md);
}
.vf-card--padding-none {
  padding: 0;
}
.vf-card--padding-sm {
  padding: var(--vf-space-3);
}
.vf-card--padding-md {
  padding: var(--vf-space-4);
}
.vf-card--padding-lg {
  padding: var(--vf-space-6);
}

/* src/styles/layout/panel.css */
.vf-panel {
  display: grid;
  gap: var(--vf-space-4);
  min-width: 0;
  border: 1px solid var(--vf-border);
  border-radius: var(--vf-radius-lg);
  padding: var(--vf-space-4);
}
.vf-panel__header,
.vf-section__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--vf-space-4);
}
.vf-panel__heading {
  display: grid;
  gap: var(--vf-space-1);
}
.vf-panel__title,
.vf-section__title {
  margin: 0;
  color: var(--vf-text-strong);
  font-size: var(--vf-font-size-lg);
  line-height: var(--vf-line-height-tight);
}
.vf-panel__description,
.vf-section__description {
  margin: 0;
  color: var(--vf-text-muted);
  font-size: var(--vf-font-size-sm);
  line-height: var(--vf-line-height-md);
}
.vf-panel__actions,
.vf-section__actions {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: var(--vf-space-2);
}
.vf-panel__body,
.vf-section {
  display: grid;
  gap: var(--vf-space-4);
  min-width: 0;
}

/* src/styles/layout/stack.css */
.vf-stack {
  display: flex;
  flex-direction: column;
}
.vf-stack--gap-none,
.vf-inline--gap-none {
  gap: 0;
}
.vf-stack--gap-xs,
.vf-inline--gap-xs {
  gap: var(--vf-space-1);
}
.vf-stack--gap-sm,
.vf-inline--gap-sm {
  gap: var(--vf-space-2);
}
.vf-stack--gap-md,
.vf-inline--gap-md {
  gap: var(--vf-space-3);
}
.vf-stack--gap-lg,
.vf-inline--gap-lg {
  gap: var(--vf-space-4);
}
.vf-stack--gap-xl,
.vf-inline--gap-xl {
  gap: var(--vf-space-6);
}
.vf-stack--align-stretch,
.vf-inline--align-stretch {
  align-items: stretch;
}
.vf-stack--align-start,
.vf-inline--align-start {
  align-items: flex-start;
}
.vf-stack--align-center,
.vf-inline--align-center {
  align-items: center;
}
.vf-stack--align-end,
.vf-inline--align-end {
  align-items: flex-end;
}
.vf-stack--justify-start,
.vf-inline--justify-start {
  justify-content: flex-start;
}
.vf-stack--justify-center,
.vf-inline--justify-center {
  justify-content: center;
}
.vf-stack--justify-end,
.vf-inline--justify-end {
  justify-content: flex-end;
}
.vf-stack--justify-between,
.vf-inline--justify-between {
  justify-content: space-between;
}

/* src/styles/layout/inline.css */
.vf-inline--wrap {
  flex-wrap: wrap;
}
.vf-inline:not(.vf-inline--wrap) {
  flex-wrap: nowrap;
}

/* src/styles/layout/app-shell.css */
.vf-app-shell {
  --vf-app-shell-header-height: 64px;
  --vf-app-shell-min-height: 100dvh;
  --vf-app-shell-sidebar-width: 280px;
  --vf-app-shell-sidebar-collapsed-width: var(--vf-app-shell-collapsed-sidebar-width, 64px);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  min-height: var(--vf-app-shell-min-height);
  color: var(--vf-text);
  background: var(--vf-bg);
}
.vf-app-shell--full-height {
  height: var(--vf-app-shell-min-height);
}
.vf-app-shell--scroll-content,
.vf-app-shell--scroll-split {
  overflow: hidden;
}
.vf-app-shell--scroll-page {
  height: auto;
  overflow: visible;
}
.vf-app-shell__header {
  z-index: 30;
  min-height: var(--vf-app-shell-header-height);
  border-bottom: 1px solid var(--vf-border);
  background: var(--vf-surface);
}
.vf-app-shell--header-static .vf-app-shell__header {
  position: static;
}
.vf-app-shell--header-sticky .vf-app-shell__header {
  position: sticky;
  top: 0;
}
.vf-app-shell--header-fixed .vf-app-shell__header {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
}
.vf-app-shell__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  min-height: 0;
}
.vf-app-shell--scroll-content .vf-app-shell__body,
.vf-app-shell--scroll-split .vf-app-shell__body {
  overflow: hidden;
}
.vf-app-shell--header-fixed .vf-app-shell__body {
  padding-top: var(--vf-app-shell-header-height);
}
.vf-app-shell--with-sidebar .vf-app-shell__body {
  grid-template-columns: var(--vf-app-shell-sidebar-width) minmax(0, 1fr);
}
.vf-app-shell--sidebar-collapsed .vf-app-shell__body {
  grid-template-columns: var(--vf-app-shell-sidebar-collapsed-width) minmax(0, 1fr);
}
.vf-app-shell__sidebar {
  position: relative;
  z-index: 20;
  display: grid;
  min-width: 0;
  min-height: 0;
  border-right: 1px solid var(--vf-border);
  background: var(--vf-surface);
  overflow: hidden;
}
.vf-app-shell__sidebar-scroll {
  min-width: 0;
  min-height: 0;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-gutter: stable;
}
.vf-app-shell--sidebar-static .vf-app-shell__sidebar {
  position: relative;
}
.vf-app-shell--sidebar-sticky .vf-app-shell__sidebar {
  position: sticky;
  top: 0;
  align-self: start;
  max-height: 100dvh;
}
.vf-app-shell--with-header.vf-app-shell--sidebar-sticky .vf-app-shell__sidebar {
  top: var(--vf-app-shell-header-height);
  max-height: calc(100dvh - var(--vf-app-shell-header-height));
}
.vf-app-shell--sidebar-fixed .vf-app-shell__sidebar {
  position: fixed;
  inset-block-start: 0;
  inset-block-end: 0;
  inset-inline-start: 0;
  width: var(--vf-app-shell-sidebar-width);
  height: 100dvh;
}
.vf-app-shell--with-header.vf-app-shell--sidebar-fixed .vf-app-shell__sidebar {
  inset-block-start: var(--vf-app-shell-header-height);
  height: calc(100dvh - var(--vf-app-shell-header-height));
}
.vf-app-shell--sidebar-collapsed.vf-app-shell--sidebar-fixed .vf-app-shell__sidebar {
  width: var(--vf-app-shell-sidebar-collapsed-width);
}
.vf-app-shell--scroll-content .vf-app-shell__sidebar,
.vf-app-shell--scroll-split .vf-app-shell__sidebar {
  align-self: stretch;
  height: 100%;
}
.vf-app-shell--scroll-page .vf-app-shell__sidebar {
  max-height: 100dvh;
}
.vf-app-shell--scroll-page.vf-app-shell--with-header .vf-app-shell__sidebar {
  max-height: calc(100dvh - var(--vf-app-shell-header-height));
}
.vf-app-shell__main {
  min-width: 0;
  min-height: 0;
}
.vf-app-shell--scroll-content .vf-app-shell__main,
.vf-app-shell--scroll-split .vf-app-shell__main {
  overflow-x: hidden;
  overflow-y: auto;
}
.vf-app-shell--scroll-page .vf-app-shell__main {
  overflow: visible;
}
.vf-app-shell--sidebar-fixed.vf-app-shell--with-sidebar .vf-app-shell__main {
  margin-inline-start: 0;
}
.vf-app-shell__content {
  min-width: 0;
  min-height: 0;
}
.vf-app-shell__footer {
  z-index: 25;
  border-top: 1px solid var(--vf-border);
  background: var(--vf-surface);
}

/* src/styles/layout/page.css */
.vf-page {
  --vf-page-gap: var(--vf-space-4);
  --vf-page-padding: var(--vf-space-6);
  display: grid;
  gap: var(--vf-page-gap);
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding: var(--vf-page-padding);
  color: var(--vf-text);
}
.vf-page--compact {
  --vf-page-gap: var(--vf-space-3);
  --vf-page-padding: var(--vf-space-4);
}
.vf-page--comfortable {
  --vf-page-gap: var(--vf-space-5);
  --vf-page-padding: var(--vf-space-7, 32px);
}
.vf-page--max-none {
  max-width: none;
}
.vf-page--max-sm {
  max-width: 720px;
}
.vf-page--max-md {
  max-width: 960px;
}
.vf-page--max-lg {
  max-width: 1200px;
}
.vf-page--max-xl {
  max-width: 1440px;
}
.vf-page__body {
  display: grid;
  gap: var(--vf-page-gap);
  min-width: 0;
}

/* src/styles/layout/page-header.css */
.vf-page-header {
  display: grid;
  gap: var(--vf-space-3);
  min-width: 0;
}
.vf-page-header__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--vf-space-4);
}
.vf-page-header__main {
  display: grid;
  gap: var(--vf-space-2);
  min-width: 0;
}
.vf-page-header__breadcrumbs {
  min-width: 0;
}
.vf-page-header__eyebrow {
  color: var(--vf-text-muted);
  font-size: var(--vf-font-size-sm);
  font-weight: 760;
}
.vf-page-header__title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--vf-space-2);
  min-width: 0;
}
.vf-page-header__title {
  margin: 0;
  color: var(--vf-text-strong);
  font-size: 24px;
  font-weight: 780;
  line-height: var(--vf-line-height-tight);
}
.vf-page-header__status,
.vf-page-header__metadata,
.vf-page-header__actions {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--vf-space-2);
}
.vf-page-header__description {
  max-width: 72ch;
  color: var(--vf-text-muted);
  font-size: var(--vf-font-size-md);
  line-height: var(--vf-line-height-md);
}
.vf-page-header__metadata {
  color: var(--vf-text-muted);
  font-size: var(--vf-font-size-sm);
}
.vf-page-header__actions {
  justify-content: flex-end;
}

/* src/styles/layout/page-toolbar.css */
.vf-page-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--vf-space-3);
  min-width: 0;
  border: 1px solid var(--vf-border);
  border-radius: var(--vf-radius-lg);
  padding: var(--vf-space-3);
  background: var(--vf-surface);
}
.vf-page-toolbar--compact {
  padding: var(--vf-space-2);
}
.vf-page-toolbar--comfortable {
  padding: var(--vf-space-4);
}
.vf-page-toolbar--sticky {
  position: sticky;
  top: 0;
  z-index: 10;
}
.vf-page-toolbar__left,
.vf-page-toolbar__right {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--vf-space-2);
  min-width: 0;
}
.vf-page-toolbar__right {
  justify-content: flex-end;
}

/* src/styles/navigation/top-nav.css */
.vf-top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--vf-space-4);
  min-height: 56px;
  padding: 0 var(--vf-space-5);
  color: var(--vf-text);
  background: var(--vf-surface);
}
.vf-top-nav__brand {
  display: inline-flex;
  align-items: center;
  gap: var(--vf-space-2);
  min-width: 0;
  color: var(--vf-text-strong);
  font-weight: 780;
}
.vf-top-nav__navigation,
.vf-top-nav__actions,
.vf-top-nav__user {
  display: inline-flex;
  align-items: center;
  gap: var(--vf-space-2);
  min-width: 0;
}
.vf-top-nav__navigation {
  flex: 1 1 auto;
}
.vf-top-nav__actions {
  justify-content: flex-end;
}

/* src/styles/navigation/side-nav.css */
.vf-side-nav {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: var(--vf-space-3);
  height: 100%;
  min-width: 0;
  min-height: 0;
  padding: var(--vf-space-3);
  color: var(--vf-text);
  background: var(--vf-surface);
  overflow: hidden;
}
.vf-side-nav__header,
.vf-side-nav__footer {
  min-width: 0;
}
.vf-side-nav__scroll {
  min-width: 0;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-gutter: stable;
}
.vf-side-nav__list,
.vf-side-nav__children {
  display: grid;
  gap: var(--vf-space-1);
  min-width: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}
.vf-side-nav__list {
  align-content: start;
}
.vf-side-nav__children {
  margin-top: var(--vf-space-1);
  padding-left: var(--vf-space-4);
}
.vf-side-nav__entry {
  min-width: 0;
}
.vf-side-nav__item {
  display: flex;
  align-items: center;
  gap: var(--vf-space-2);
  width: 100%;
  min-width: 0;
  min-height: 34px;
  border: 1px solid transparent;
  border-radius: var(--vf-radius-md);
  padding: 0 var(--vf-space-3);
  color: var(--vf-text-muted);
  background: transparent;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}
.vf-side-nav__item:hover:not(:disabled) {
  color: var(--vf-text);
  background: var(--vf-surface-subtle);
}
.vf-side-nav__item:disabled {
  cursor: not-allowed;
  opacity: 0.56;
}
.vf-side-nav__item--active {
  border-color: color-mix(in srgb, var(--vf-primary) 35%, var(--vf-border));
  color: var(--vf-primary);
  background: var(--vf-primary-soft);
}
.vf-side-nav__item--level-2 {
  min-height: 30px;
  padding-inline: var(--vf-space-2);
  font-size: var(--vf-font-size-sm);
}
.vf-side-nav__icon {
  display: inline-flex;
  flex: 0 0 auto;
  width: 18px;
  justify-content: center;
}
.vf-side-nav__label {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.vf-side-nav__badge {
  margin-left: auto;
}
.vf-side-nav--collapsed {
  padding-inline: var(--vf-space-2);
}
.vf-side-nav--collapsed .vf-side-nav__item {
  justify-content: center;
  padding-inline: 0;
}
.vf-side-nav--collapsed .vf-side-nav__header,
.vf-side-nav--collapsed .vf-side-nav__footer {
  overflow: hidden;
}

/* src/styles/navigation/breadcrumbs.css */
.vf-breadcrumbs {
  min-width: 0;
  color: var(--vf-text-muted);
  font-size: var(--vf-font-size-sm);
}
.vf-breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--vf-space-1);
  min-width: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}
.vf-breadcrumbs__item {
  display: inline-flex;
  align-items: center;
  gap: var(--vf-space-1);
  min-width: 0;
}
.vf-breadcrumbs__link {
  border: 0;
  border-radius: var(--vf-radius-sm);
  padding: 1px 3px;
  color: var(--vf-primary);
  background: transparent;
  text-decoration: none;
  cursor: pointer;
}
.vf-breadcrumbs__link:hover {
  text-decoration: underline;
}
.vf-breadcrumbs__separator {
  color: var(--vf-text-muted);
}
.vf-breadcrumbs__current {
  min-width: 0;
  color: var(--vf-text);
}

/* src/styles/navigation/tabs.css */
.vf-tabs {
  display: grid;
  gap: var(--vf-space-3);
  min-width: 0;
}
.vf-tabs__list {
  display: flex;
  align-items: center;
  gap: var(--vf-tabs-gap, var(--vf-space-1));
  min-width: 0;
  overflow-x: auto;
}
.vf-tabs__tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--vf-space-2);
  min-height: 36px;
  border: 1px solid transparent;
  border-radius: var(--vf-radius-md);
  padding: 0 12px;
  color: var(--vf-text-muted);
  background: transparent;
  font-weight: 720;
  white-space: nowrap;
  cursor: pointer;
}
.vf-tabs--sm .vf-tabs__tab {
  min-height: 30px;
  padding-inline: 10px;
  font-size: var(--vf-font-size-sm);
}
.vf-tabs__tab:hover:not(:disabled) {
  color: var(--vf-text);
  background: var(--vf-surface-subtle);
}
.vf-tabs__tab:disabled {
  cursor: not-allowed;
  opacity: 0.56;
}
.vf-tabs__tab--selected {
  color: var(--vf-primary);
}
.vf-tabs--line .vf-tabs__list {
  border-bottom: 1px solid var(--vf-border);
}
.vf-tabs--line .vf-tabs__tab {
  border-radius: var(--vf-radius-md) var(--vf-radius-md) 0 0;
}
.vf-tabs--line .vf-tabs__tab--selected {
  border-bottom-color: var(--vf-primary);
  background: var(--vf-primary-soft);
}
.vf-tabs--contained .vf-tabs__list,
.vf-tabs--pills .vf-tabs__list {
  width: fit-content;
  border: 1px solid var(--vf-border);
  border-radius: var(--vf-radius-lg);
  padding: 2px;
  background: var(--vf-surface-subtle);
}
.vf-tabs--contained .vf-tabs__tab--selected,
.vf-tabs--pills .vf-tabs__tab--selected {
  border-color: var(--vf-border);
  background: var(--vf-surface);
  box-shadow: var(--vf-shadow-sm);
}
.vf-tabs--pills .vf-tabs__list,
.vf-tabs--pills .vf-tabs__tab {
  border-radius: 999px;
}
.vf-tabs__badge {
  display: inline-flex;
}
.vf-tabs__panel {
  min-width: 0;
  color: var(--vf-text);
}

/* src/styles/overlays/popover.css */
.vf-popover,
.vf-tooltip {
  position: relative;
  display: inline-flex;
}
.vf-popover__trigger,
.vf-tooltip__trigger {
  display: inline-flex;
}
.vf-popover__content {
  position: fixed;
  top: var(--vf-overlay-y, 0);
  left: var(--vf-overlay-x, 0);
  z-index: var(--vf-z-popover);
  width: var(--vf-overlay-anchor-width, auto);
  min-width: 220px;
  max-width: min(420px, calc(100vw - (var(--vf-space-4) * 2)));
  border: 1px solid var(--vf-border);
  border-radius: var(--vf-radius-lg);
  color: var(--vf-text);
  background: var(--vf-surface-raised);
  box-shadow: var(--vf-shadow-md);
}
.vf-popover__content--modal {
  z-index: var(--vf-z-overlay);
}

/* src/styles/overlays/dropdown.css */
.vf-dropdown {
  display: grid;
  gap: var(--vf-space-2);
  padding: var(--vf-space-3);
}

/* src/styles/overlays/menu.css */
.vf-menu {
  display: grid;
  gap: var(--vf-space-1);
  min-width: 220px;
  padding: var(--vf-space-2);
}
.vf-menu--sm {
  min-width: 180px;
}
.vf-menu--lg {
  min-width: 280px;
}
.vf-menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--vf-space-3);
  width: 100%;
  border: 1px solid transparent;
  border-radius: var(--vf-radius-md);
  padding: var(--vf-space-2) var(--vf-space-3);
  color: var(--vf-text);
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
}
.vf-menu-item:hover:not(:disabled),
.vf-menu-item--active {
  background: var(--vf-surface-subtle);
}
.vf-menu-item:focus-visible {
  outline: 2px solid var(--vf-focus-ring);
  outline-offset: 1px;
}
.vf-menu-item:disabled,
.vf-menu-item[aria-disabled=true] {
  cursor: not-allowed;
  opacity: 0.55;
}
.vf-menu-item--selected {
  color: var(--vf-primary);
  background: var(--vf-primary-soft);
}
.vf-menu-item--danger {
  color: var(--vf-danger);
}
.vf-menu-item__main {
  display: grid;
  gap: 2px;
  min-width: 0;
}
.vf-menu-item__label {
  color: inherit;
  font-weight: 680;
}
.vf-menu-item__description,
.vf-menu-item__shortcut {
  color: var(--vf-text-muted);
  font-size: var(--vf-font-size-sm);
}

/* src/styles/overlays/tooltip.css */
.vf-tooltip {
  width: fit-content;
}
.vf-tooltip__content {
  position: fixed;
  top: var(--vf-overlay-y, 0);
  left: var(--vf-overlay-x, 0);
  z-index: var(--vf-z-tooltip);
  max-width: 260px;
  border: 1px solid var(--vf-border);
  border-radius: var(--vf-radius-md);
  padding: var(--vf-space-2) var(--vf-space-3);
  color: var(--vf-text);
  background: var(--vf-surface-raised);
  box-shadow: var(--vf-shadow-sm);
  font-size: var(--vf-font-size-sm);
  line-height: var(--vf-line-height-md);
  pointer-events: none;
}

/* src/styles/overlays/dialog.css */
.vf-dialog,
.vf-drawer {
  position: fixed;
  inset: 0;
  z-index: var(--vf-z-dialog);
}
.vf-dialog__overlay,
.vf-drawer__overlay {
  position: fixed;
  inset: 0;
  display: grid;
  background: rgb(15 23 42 / 45%);
}
.vf-dialog__overlay {
  place-items: center;
  padding: var(--vf-space-4);
}
.vf-dialog__layer,
.vf-drawer__layer {
  display: grid;
  min-width: 0;
  max-height: calc(100vh - 32px);
}
.vf-dialog__panel,
.vf-drawer__panel {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  min-width: 0;
  max-height: calc(100vh - 32px);
  border: 1px solid var(--vf-border);
  color: var(--vf-text);
  background: var(--vf-surface);
  box-shadow: var(--vf-shadow-md);
}
.vf-dialog__panel {
  width: min(100%, 520px);
  border-radius: var(--vf-radius-lg);
}
.vf-dialog__panel--sm {
  max-width: 400px;
}
.vf-dialog__panel--md {
  max-width: 560px;
}
.vf-dialog__panel--lg {
  max-width: 720px;
}
.vf-dialog__panel--xl {
  max-width: 920px;
}
.vf-dialog__panel:focus,
.vf-drawer__panel:focus {
  outline: none;
}
.vf-dialog__header,
.vf-drawer__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--vf-space-4);
  border-bottom: 1px solid var(--vf-border);
  padding: var(--vf-space-4);
}
.vf-dialog__heading,
.vf-drawer__heading {
  display: grid;
  gap: var(--vf-space-1);
}
.vf-dialog__title,
.vf-drawer__title {
  margin: 0;
  color: var(--vf-text-strong);
  font-size: var(--vf-font-size-lg);
  line-height: var(--vf-line-height-tight);
}
.vf-dialog__description,
.vf-drawer__description {
  margin: 0;
  color: var(--vf-text-muted);
  font-size: var(--vf-font-size-sm);
  line-height: var(--vf-line-height-md);
}
.vf-dialog__body,
.vf-drawer__body {
  min-height: 0;
  overflow: auto;
  padding: var(--vf-space-4);
}
.vf-dialog__footer,
.vf-drawer__footer {
  border-top: 1px solid var(--vf-border);
  padding: var(--vf-space-4);
}
.vf-overlay-close {
  display: inline-grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid var(--vf-border);
  border-radius: var(--vf-radius-md);
  color: var(--vf-text-muted);
  background: var(--vf-surface);
  cursor: pointer;
}
.vf-overlay-close:hover {
  color: var(--vf-text);
  background: var(--vf-surface-subtle);
}
.vf-overlay-close:focus-visible {
  outline: 2px solid var(--vf-focus-ring);
  outline-offset: 2px;
}

/* src/styles/overlays/drawer.css */
.vf-drawer__overlay {
  align-items: stretch;
  justify-items: end;
}
.vf-drawer--left .vf-drawer__overlay {
  justify-items: start;
}
.vf-drawer--bottom .vf-drawer__overlay {
  align-items: end;
  justify-items: stretch;
}
.vf-drawer--top .vf-drawer__overlay {
  align-items: start;
  justify-items: stretch;
}
.vf-drawer__panel {
  height: 100vh;
  width: min(100vw, 420px);
}
.vf-drawer__panel--sm {
  width: min(100vw, 340px);
}
.vf-drawer__panel--md {
  width: min(100vw, 420px);
}
.vf-drawer__panel--lg {
  width: min(100vw, 560px);
}
.vf-drawer__panel--bottom {
  width: 100%;
  height: min(70vh, 520px);
  border-radius: var(--vf-radius-lg) var(--vf-radius-lg) 0 0;
}
.vf-drawer__panel--top {
  width: 100%;
  height: min(70vh, 520px);
  border-radius: 0 0 var(--vf-radius-lg) var(--vf-radius-lg);
}

/* src/styles/overlays/confirm-dialog.css */
.vf-confirm-dialog__actions {
  display: flex;
  justify-content: flex-end;
  gap: var(--vf-space-2);
}

/* src/styles/overlays/portal.css */
.vf-dismissable-layer {
  z-index: var(--vf-overlay-stack-index, var(--vf-z-popover));
}
.vf-focus-scope {
  min-width: 0;
}

/* src/styles/index.css */
