/* 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 {
  color: var(--vf-control-disabled-text);
  cursor: not-allowed;
}
@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-default);
  }
  .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-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: var(--vf-focus-width) solid var(--vf-focus-color);
  outline-offset: var(--vf-focus-offset);
}

/* 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 var(--vf-motion-duration-deliberate) linear infinite;
}
@keyframes vf-spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes vf-skeleton {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: -100% 0;
  }
}

/* src/styles/typography/typography.css */
.vf-text {
  margin: 0;
  color: var(--vf-text-primary);
  font-family: var(--vf-type-body-font-family);
  font-size: var(--vf-type-body-font-size);
  font-weight: var(--vf-type-body-font-weight);
  line-height: var(--vf-type-body-line-height);
  letter-spacing: var(--vf-type-body-letter-spacing);
}
.vf-text--sm {
  font-size: var(--vf-type-caption-font-size);
  line-height: var(--vf-type-caption-line-height);
}
.vf-text--md {
  font-size: var(--vf-type-body-font-size);
}
.vf-text--lg {
  font-size: var(--vf-type-section-title-font-size);
  line-height: var(--vf-type-section-title-line-height);
}
.vf-text--muted {
  color: var(--vf-text-secondary);
}
.vf-text--strong {
  color: var(--vf-text-primary);
  font-weight: var(--vf-font-weight-bold);
}
.vf-text--danger {
  color: var(--vf-status-error-text);
}
.vf-text--success {
  color: var(--vf-status-success-text);
}
.vf-text--warning {
  color: var(--vf-status-warning-text);
}
.vf-heading {
  margin: 0;
  color: var(--vf-text-primary);
  font-family: var(--vf-type-section-title-font-family);
  font-size: var(--vf-type-section-title-font-size);
  font-weight: var(--vf-type-section-title-font-weight);
  line-height: var(--vf-type-section-title-line-height);
  letter-spacing: var(--vf-type-section-title-letter-spacing);
}
.vf-heading--sm {
  font-size: var(--vf-type-section-title-font-size);
}
.vf-heading--md {
  font-family: var(--vf-type-page-title-font-family);
  font-size: var(--vf-type-page-title-font-size);
  font-weight: var(--vf-type-page-title-font-weight);
  line-height: var(--vf-type-page-title-line-height);
  letter-spacing: var(--vf-type-page-title-letter-spacing);
}
.vf-heading--lg {
  font-family: var(--vf-type-display-font-family);
  font-size: var(--vf-type-display-font-size);
  font-weight: var(--vf-type-display-font-weight);
  line-height: var(--vf-type-display-line-height);
  letter-spacing: var(--vf-type-display-letter-spacing);
}
.vf-label {
  display: inline-flex;
  gap: var(--vf-component-gap);
  color: var(--vf-text-primary);
  font-family: var(--vf-type-label-font-family);
  font-size: var(--vf-type-label-font-size);
  font-weight: var(--vf-type-label-font-weight);
  line-height: var(--vf-type-label-line-height);
  letter-spacing: var(--vf-type-label-letter-spacing);
}
.vf-label--sm,
.vf-caption {
  font-size: var(--vf-type-caption-font-size);
  line-height: var(--vf-type-caption-line-height);
}
.vf-label--md {
  font-size: var(--vf-type-label-font-size);
}
.vf-caption {
  display: inline-block;
  margin: 0;
  color: var(--vf-text-secondary);
  font-family: var(--vf-type-caption-font-family);
  font-weight: var(--vf-type-caption-font-weight);
  letter-spacing: var(--vf-type-caption-letter-spacing);
}
.vf-code-text {
  display: inline-flex;
  width: fit-content;
  border: 1px solid var(--vf-border-default);
  border-radius: var(--vf-radius-sm);
  padding: 2px 6px;
  color: var(--vf-text-primary);
  background: var(--vf-surface-muted);
  font-family: var(--vf-type-code-font-family);
  font-size: var(--vf-type-code-font-size);
  font-weight: var(--vf-type-code-font-weight);
  line-height: var(--vf-type-code-line-height);
  letter-spacing: var(--vf-type-code-letter-spacing);
}

/* src/styles/feedback/alert.css */
vf-inline-message.vf-inline-message {
  display: grid;
  gap: var(--vf-component-gap);
  border: 1px solid var(--vf-border-default);
  border-radius: var(--vf-radius-md);
  padding: var(--vf-space-3);
  color: var(--vf-text-primary);
  background: var(--vf-surface-muted);
}
vf-inline-message .vf-inline-message__title {
  color: var(--vf-text-primary);
  font-family: var(--vf-type-label-font-family);
  font-size: var(--vf-type-label-font-size);
  font-weight: var(--vf-type-label-font-weight);
  line-height: var(--vf-type-label-line-height);
  letter-spacing: var(--vf-type-label-letter-spacing);
}
vf-inline-message .vf-inline-message__content {
  color: var(--vf-text-secondary);
  font-family: var(--vf-type-body-font-family);
  font-size: var(--vf-type-body-font-size);
  font-weight: var(--vf-type-body-font-weight);
  line-height: var(--vf-type-body-line-height);
  letter-spacing: var(--vf-type-body-letter-spacing);
}
vf-inline-message.vf-inline-message--success {
  border-color: var(--vf-status-success-border);
  background: var(--vf-status-success-background);
}
vf-inline-message.vf-inline-message--success .vf-inline-message__title,
vf-inline-message.vf-inline-message--success .vf-inline-message__content {
  color: var(--vf-status-success-text);
}
vf-inline-message.vf-inline-message--warning {
  border-color: var(--vf-status-warning-border);
  background: var(--vf-status-warning-background);
}
vf-inline-message.vf-inline-message--warning .vf-inline-message__title,
vf-inline-message.vf-inline-message--warning .vf-inline-message__content {
  color: var(--vf-status-warning-text);
}
vf-inline-message.vf-inline-message--danger {
  border-color: var(--vf-status-error-border);
  background: var(--vf-status-error-background);
}
vf-inline-message.vf-inline-message--danger .vf-inline-message__title,
vf-inline-message.vf-inline-message--danger .vf-inline-message__content {
  color: var(--vf-status-error-text);
}
vf-inline-message.vf-inline-message--info {
  border-color: var(--vf-status-info-border);
  background: var(--vf-status-info-background);
}
vf-inline-message.vf-inline-message--info .vf-inline-message__title,
vf-inline-message.vf-inline-message--info .vf-inline-message__content {
  color: var(--vf-status-info-text);
}

/* src/styles/feedback/badge.css */
.vf-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border: 1px solid var(--vf-status-neutral-border);
  border-radius: 999px;
  color: var(--vf-status-neutral-text);
  background: var(--vf-status-neutral-background);
  font-family: var(--vf-type-label-font-family);
  font-weight: var(--vf-type-label-font-weight);
  line-height: var(--vf-type-label-line-height);
  letter-spacing: var(--vf-type-label-letter-spacing);
}
.vf-badge--sm {
  min-height: 22px;
  padding: 2px 8px;
  font-size: var(--vf-type-caption-font-size);
}
.vf-badge--md {
  min-height: 26px;
  padding: 3px 10px;
  font-size: var(--vf-type-label-font-size);
}
.vf-badge--success {
  border-color: var(--vf-status-success-border);
  color: var(--vf-status-success-text);
  background: var(--vf-status-success-background);
}
.vf-badge--warning {
  border-color: var(--vf-status-warning-border);
  color: var(--vf-status-warning-text);
  background: var(--vf-status-warning-background);
}
.vf-badge--danger {
  border-color: var(--vf-status-error-border);
  color: var(--vf-status-error-text);
  background: var(--vf-status-error-background);
}
.vf-badge--info {
  border-color: var(--vf-status-info-border);
  color: var(--vf-status-info-text);
  background: var(--vf-status-info-background);
}
.vf-badge--solid {
  color: var(--vf-text-inverse);
}
.vf-badge--solid.vf-badge--neutral {
  border-color: var(--vf-status-neutral-indicator);
  background: var(--vf-status-neutral-indicator);
}
.vf-badge--solid.vf-badge--success {
  border-color: var(--vf-status-success-indicator);
  background: var(--vf-status-success-indicator);
}
.vf-badge--solid.vf-badge--warning {
  border-color: var(--vf-status-warning-indicator);
  background: var(--vf-status-warning-indicator);
}
.vf-badge--solid.vf-badge--danger {
  border-color: var(--vf-status-error-indicator);
  background: var(--vf-status-error-indicator);
}
.vf-badge--solid.vf-badge--info {
  border-color: var(--vf-status-info-indicator);
  background: var(--vf-status-info-indicator);
}

/* src/styles/feedback/empty-state.css */
.vf-empty-state,
.vf-error-state,
.vf-loading-state {
  display: grid;
  place-items: center;
  gap: var(--vf-component-gap);
  border-radius: var(--vf-radius-lg);
  padding: var(--vf-space-6);
  color: var(--vf-text-primary);
  background: var(--vf-surface-default);
  text-align: center;
}
.vf-empty-state--bordered,
.vf-error-state--bordered,
.vf-loading-state--bordered {
  border: 1px solid var(--vf-border-default);
}
.vf-error-state {
  border-color: var(--vf-status-error-border);
}
.vf-empty-state__title,
.vf-error-state__title,
.vf-loading-state__title {
  color: var(--vf-text-primary);
  font-family: var(--vf-type-section-title-font-family);
  font-size: var(--vf-type-section-title-font-size);
  font-weight: var(--vf-type-section-title-font-weight);
  line-height: var(--vf-type-section-title-line-height);
  letter-spacing: var(--vf-type-section-title-letter-spacing);
}
.vf-empty-state__description,
.vf-error-state__description,
.vf-loading-state__description {
  max-width: 60ch;
  color: var(--vf-text-secondary);
  font-family: var(--vf-type-body-font-family);
  font-size: var(--vf-type-body-font-size);
  line-height: var(--vf-type-body-line-height);
}

/* src/styles/feedback/loading-state.css */
.vf-loading-state--sm {
  padding: var(--vf-space-3);
  font-family: var(--vf-type-caption-font-family);
  font-size: var(--vf-type-caption-font-size);
  line-height: var(--vf-type-caption-line-height);
}
.vf-loading-state--lg {
  padding: var(--vf-space-6);
  font-family: var(--vf-type-section-title-font-family);
  font-size: var(--vf-type-section-title-font-size);
  line-height: var(--vf-type-section-title-line-height);
}

/* src/styles/feedback/skeleton.css */
vf-skeleton.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-muted),
      color-mix(in srgb, var(--vf-surface-muted) 55%, var(--vf-border-default)),
      var(--vf-surface-muted));
  background-size: 220% 100%;
  animation: vf-skeleton var(--vf-motion-duration-deliberate) var(--vf-motion-easing-standard) infinite alternate;
}
vf-skeleton.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-default);
}
.vf-card--elevated {
  border: 1px solid var(--vf-border-default);
  background: var(--vf-surface-overlay);
  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-default);
  border-radius: var(--vf-radius-lg);
  padding: var(--vf-space-4);
  color: var(--vf-text-primary);
  background: var(--vf-surface-default);
}
.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-component-gap);
}
.vf-panel__title,
.vf-section__title {
  margin: 0;
  color: var(--vf-text-primary);
  font-family: var(--vf-type-section-title-font-family);
  font-size: var(--vf-type-section-title-font-size);
  font-weight: var(--vf-type-section-title-font-weight);
  line-height: var(--vf-type-section-title-line-height);
  letter-spacing: var(--vf-type-section-title-letter-spacing);
}
.vf-panel__description,
.vf-section__description {
  margin: 0;
  color: var(--vf-text-secondary);
  font-family: var(--vf-type-caption-font-family);
  font-size: var(--vf-type-caption-font-size);
  font-weight: var(--vf-type-caption-font-weight);
  line-height: var(--vf-type-caption-line-height);
  letter-spacing: var(--vf-type-caption-letter-spacing);
}
.vf-panel__actions,
.vf-section__actions {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: var(--vf-component-gap);
}
.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/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-primary);
}
.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/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-primary);
  background: var(--vf-control-background);
  font-family: var(--vf-type-label-font-family);
  font-size: var(--vf-type-label-font-size);
  font-weight: var(--vf-type-label-font-weight);
  line-height: var(--vf-line-height-none);
  letter-spacing: var(--vf-type-label-letter-spacing);
  cursor: pointer;
  transition: var(--vf-motion-transition-color), var(--vf-motion-transition-opacity);
}
.vf-button:hover:not(:disabled),
.vf-icon-button:hover:not(:disabled),
.vf-toolbar-button:hover:not(:disabled) {
  background: var(--vf-control-background-hover);
}
.vf-button {
  gap: var(--vf-component-gap);
  min-height: var(--vf-control-height);
  padding: var(--vf-control-padding-y) var(--vf-control-padding-x);
  white-space: nowrap;
}
.vf-button--sm {
  min-height: var(--vf-control-height-sm);
  padding-inline: var(--vf-control-padding-x-sm);
  font-size: var(--vf-type-caption-font-size);
}
.vf-button--lg {
  min-height: var(--vf-control-height-lg);
  padding-inline: var(--vf-control-padding-x-lg);
  font-size: var(--vf-type-section-title-font-size);
}
.vf-button--full-width {
  width: 100%;
}
.vf-button--default,
.vf-icon-button--default {
  border-color: var(--vf-control-border);
}
.vf-button--primary,
.vf-icon-button--primary {
  border-color: var(--vf-interactive-primary);
  color: var(--vf-interactive-primary-text);
  background: var(--vf-interactive-primary);
}
.vf-button--primary:hover:not(:disabled),
.vf-icon-button--primary:hover:not(:disabled) {
  border-color: var(--vf-interactive-primary-hover);
  background: var(--vf-interactive-primary-hover);
}
.vf-button--danger,
.vf-icon-button--danger {
  border-color: var(--vf-status-error-indicator);
  color: var(--vf-text-inverse);
  background: var(--vf-status-error-indicator);
}
.vf-button--danger:hover:not(:disabled),
.vf-icon-button--danger:hover:not(:disabled) {
  border-color: color-mix(in srgb, var(--vf-status-error-indicator) 88%, var(--vf-text-primary));
  background: color-mix(in srgb, var(--vf-status-error-indicator) 88%, var(--vf-text-primary));
}
.vf-button--ghost,
.vf-icon-button--ghost {
  background: transparent;
}
.vf-button--subtle,
.vf-icon-button--subtle,
.vf-toolbar-button--subtle {
  border-color: transparent;
  background: var(--vf-surface-muted);
}
.vf-button__label,
.vf-button__slot {
  display: inline-flex;
  align-items: center;
}

/* src/styles/actions/icon.css */
vf-icon.vf-icon {
  display: inline-flex;
  flex: 0 0 auto;
  width: var(--vf-icon-size, 16px);
  height: var(--vf-icon-size, 16px);
  color: currentcolor;
  vertical-align: middle;
}
vf-icon .vf-icon__svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* src/styles/actions/button-group.css */
.vf-button-group,
.vf-inline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--vf-component-gap);
}
.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: var(--vf-control-height-sm);
  font-size: var(--vf-type-caption-font-size);
}
.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: var(--vf-hit-target-min);
  height: var(--vf-hit-target-min);
  border-radius: var(--vf-radius-sm);
}
.vf-icon-button--sm {
  width: var(--vf-control-height-sm);
  height: var(--vf-control-height-sm);
}
.vf-icon-button--lg {
  width: var(--vf-control-height-lg);
  height: var(--vf-control-height-lg);
}

/* src/styles/actions/toolbar-button.css */
.vf-toolbar-button {
  gap: var(--vf-component-gap);
  min-height: var(--vf-control-height-sm);
  border-color: var(--vf-control-border);
  border-radius: var(--vf-radius-md);
  padding: var(--vf-control-padding-y-sm) var(--vf-control-padding-x-sm);
  font-size: var(--vf-type-caption-font-size);
  white-space: nowrap;
}
.vf-toolbar-button--md {
  min-height: var(--vf-control-height);
  padding: var(--vf-control-padding-y) var(--vf-control-padding-x);
  font-size: var(--vf-type-label-font-size);
}
.vf-toolbar-button--primary {
  border-color: var(--vf-interactive-primary);
  color: var(--vf-interactive-primary-text);
  background: var(--vf-interactive-primary);
}
.vf-toolbar-button--danger {
  border-color: var(--vf-status-error-indicator);
  color: var(--vf-text-inverse);
  background: var(--vf-status-error-indicator);
}
.vf-toolbar-button--ghost {
  border-color: transparent;
  background: transparent;
}
.vf-toolbar-button--active,
.vf-toolbar-button[aria-pressed=true] {
  border-color: var(--vf-interactive-selected-border);
  color: var(--vf-interactive-selected-text);
  background: var(--vf-interactive-selected-background);
}
.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-component-gap);
  min-height: var(--vf-control-height);
  border: 1px solid var(--vf-control-border);
  border-radius: var(--vf-radius-md);
  padding: var(--vf-control-padding-y) var(--vf-control-padding-x);
  color: var(--vf-text-primary);
  background: var(--vf-control-background);
  font-family: var(--vf-type-label-font-family);
  font-size: var(--vf-type-label-font-size);
  font-weight: var(--vf-type-label-font-weight);
  line-height: var(--vf-type-label-line-height);
  letter-spacing: var(--vf-type-label-letter-spacing);
  cursor: pointer;
  transition: var(--vf-motion-transition-color);
}
.vf-toggle-button--sm {
  min-height: var(--vf-control-height-sm);
  padding-inline: var(--vf-control-padding-x-sm);
  font-size: var(--vf-type-caption-font-size);
}
.vf-toggle-button--lg {
  min-height: var(--vf-control-height-lg);
  padding-inline: var(--vf-control-padding-x-lg);
  font-size: var(--vf-type-section-title-font-size);
}
.vf-toggle-button:hover:not(:disabled) {
  border-color: var(--vf-control-border-hover);
  background: var(--vf-control-background-hover);
}
.vf-toggle-button--pressed {
  border-color: var(--vf-interactive-selected-border);
  color: var(--vf-interactive-selected-text);
  background: var(--vf-interactive-selected-background);
  box-shadow: inset 0 0 0 1px var(--vf-interactive-selected-border);
}
.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 {
  color: var(--vf-control-disabled-text);
  background: var(--vf-control-disabled-background);
  cursor: not-allowed;
  opacity: 1;
}

/* 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-default);
  border-radius: var(--vf-radius-md);
  padding: 2px;
  background: var(--vf-surface-muted);
}
.vf-segmented-control__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--vf-component-gap);
  min-height: var(--vf-control-height-sm);
  border: 1px solid transparent;
  border-radius: calc(var(--vf-radius-md) - 2px);
  padding: var(--vf-control-padding-y-sm) var(--vf-control-padding-x-sm);
  color: var(--vf-text-secondary);
  background: transparent;
  font-family: var(--vf-type-label-font-family);
  font-size: var(--vf-type-caption-font-size);
  font-weight: var(--vf-type-label-font-weight);
  line-height: var(--vf-type-label-line-height);
  letter-spacing: var(--vf-type-label-letter-spacing);
  cursor: pointer;
  transition: var(--vf-motion-transition-color);
}
.vf-segmented-control--md .vf-segmented-control__item {
  min-height: var(--vf-control-height-md);
  padding-inline: var(--vf-control-padding-x-md);
  font-size: var(--vf-type-label-font-size);
}
.vf-segmented-control__item:hover:not(:disabled) {
  color: var(--vf-text-primary);
  background: var(--vf-control-background-hover);
}
.vf-segmented-control__item--selected {
  border-color: var(--vf-interactive-selected-border);
  color: var(--vf-interactive-selected-text);
  background: var(--vf-interactive-selected-background);
  box-shadow: var(--vf-shadow-sm);
}

/* src/styles/forms/input.css */
.vf-input,
.vf-select {
  width: 100%;
  min-height: var(--vf-control-height);
  border: 1px solid var(--vf-control-border);
  border-radius: var(--vf-radius-md);
  padding: var(--vf-control-padding-y) var(--vf-control-padding-x);
  color: var(--vf-text-primary);
  background: var(--vf-control-background);
  font-family: var(--vf-type-body-font-family);
  font-size: var(--vf-type-body-font-size);
  font-weight: var(--vf-type-body-font-weight);
  line-height: var(--vf-type-body-line-height);
  letter-spacing: var(--vf-type-body-letter-spacing);
  transition: var(--vf-motion-transition-color);
}
.vf-input--sm,
.vf-select--sm {
  min-height: var(--vf-control-height-sm);
  padding: var(--vf-control-padding-y-sm) var(--vf-control-padding-x-sm);
  font-size: var(--vf-type-caption-font-size);
}
.vf-input--lg,
.vf-select--lg {
  min-height: var(--vf-control-height-lg);
  padding: var(--vf-control-padding-y-lg) var(--vf-control-padding-x-lg);
  font-size: var(--vf-type-section-title-font-size);
}
.vf-input:hover:not(:disabled),
.vf-select:hover:not(:disabled) {
  border-color: var(--vf-control-border-hover);
  background: var(--vf-control-background-hover);
}
.vf-input[aria-invalid=true],
.vf-select[aria-invalid=true],
.vf-checkbox[aria-invalid=true] {
  border-color: var(--vf-status-error-indicator);
}
.vf-input:disabled,
.vf-select:disabled,
.vf-textarea:disabled {
  border-color: var(--vf-control-disabled-border);
  color: var(--vf-control-disabled-text);
  background: var(--vf-control-disabled-background);
  opacity: 1;
}
.vf-textarea {
  min-height: 96px;
  padding-block: var(--vf-control-padding-y-lg);
  resize: vertical;
}
.vf-search-input {
  position: relative;
  display: grid;
}
.vf-search-input .vf-input {
  padding-left: calc(var(--vf-icon-size-md) + var(--vf-space-4));
}
.vf-search-input__icon {
  position: absolute;
  top: 50%;
  left: var(--vf-control-padding-x);
  color: var(--vf-text-secondary);
  transform: translateY(-50%);
  pointer-events: none;
}

/* src/styles/forms/checkbox.css */
.vf-checkbox-field {
  display: inline-flex;
  align-items: flex-start;
  gap: var(--vf-component-gap);
  color: var(--vf-text-primary);
  font-family: var(--vf-type-body-font-family);
  font-size: var(--vf-type-body-font-size);
  font-weight: var(--vf-type-body-font-weight);
  line-height: var(--vf-type-body-line-height);
  letter-spacing: var(--vf-type-body-letter-spacing);
}
.vf-checkbox {
  width: var(--vf-icon-size-md);
  height: var(--vf-icon-size-md);
  margin: 2px 0 0;
  accent-color: var(--vf-interactive-primary);
}
.vf-checkbox--sm {
  width: var(--vf-icon-size-sm);
  height: var(--vf-icon-size-sm);
}
.vf-checkbox--lg {
  width: var(--vf-icon-size-lg);
  height: var(--vf-icon-size-lg);
}

/* src/styles/forms/radio.css */
.vf-radio-field {
  display: inline-flex;
  align-items: flex-start;
  gap: var(--vf-component-gap);
  color: var(--vf-text-primary);
  font-family: var(--vf-type-body-font-family);
  font-size: var(--vf-type-body-font-size);
  font-weight: var(--vf-type-body-font-weight);
  line-height: var(--vf-type-body-line-height);
  letter-spacing: var(--vf-type-body-letter-spacing);
}
.vf-radio {
  width: var(--vf-icon-size-md);
  height: var(--vf-icon-size-md);
  margin: 2px 0 0;
  accent-color: var(--vf-interactive-primary);
}
.vf-radio[aria-invalid=true] {
  outline: var(--vf-focus-width) solid var(--vf-status-error-indicator);
  outline-offset: var(--vf-focus-offset);
}
.vf-radio-field__content {
  display: grid;
  gap: 2px;
  min-width: 0;
}
.vf-radio-field__label {
  color: var(--vf-text-primary);
  font-family: var(--vf-type-label-font-family);
  font-size: var(--vf-type-label-font-size);
  font-weight: var(--vf-type-label-font-weight);
  line-height: var(--vf-type-label-line-height);
}
.vf-radio-field__description {
  color: var(--vf-text-secondary);
  font-family: var(--vf-type-caption-font-family);
  font-size: var(--vf-type-caption-font-size);
  line-height: var(--vf-type-caption-line-height);
}

/* src/styles/forms/radio-group.css */
.vf-radio-group {
  display: grid;
  gap: var(--vf-component-gap);
  min-width: 0;
  margin: 0;
  border: 0;
  padding: 0;
  color: var(--vf-text-primary);
}
.vf-radio-group__legend {
  margin: 0 0 var(--vf-space-1);
  padding: 0;
  color: var(--vf-text-primary);
  font-family: var(--vf-type-label-font-family);
  font-size: var(--vf-type-label-font-size);
  font-weight: var(--vf-type-label-font-weight);
  line-height: var(--vf-type-label-line-height);
}
.vf-radio-group__description,
.vf-radio-group__error {
  font-family: var(--vf-type-caption-font-family);
  font-size: var(--vf-type-caption-font-size);
  line-height: var(--vf-type-caption-line-height);
}
.vf-radio-group__description {
  color: var(--vf-text-secondary);
}
.vf-radio-group__error {
  color: var(--vf-status-error-text);
}
.vf-radio-group__options {
  display: grid;
  gap: var(--vf-component-gap);
}
.vf-radio-group--horizontal .vf-radio-group__options {
  display: flex;
  flex-wrap: wrap;
  gap: var(--vf-space-3);
}
.vf-radio-group--disabled {
  color: var(--vf-text-disabled);
}

/* src/styles/forms/switch.css */
.vf-switch {
  display: inline-flex;
  align-items: flex-start;
  gap: var(--vf-component-gap);
  color: var(--vf-text-primary);
  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-control-border-hover);
  border-radius: 999px;
  color: var(--vf-text-secondary);
  background: var(--vf-control-background-active);
  transition: var(--vf-motion-transition-color);
}
.vf-switch__thumb {
  position: absolute;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: var(--vf-text-inverse);
  box-shadow: var(--vf-shadow-sm);
  transition: var(--vf-motion-transition-transform);
}
.vf-switch__state {
  position: absolute;
  font-family: var(--vf-type-caption-font-family);
  font-size: var(--vf-font-size-2xs);
  font-weight: var(--vf-font-weight-bold);
  line-height: var(--vf-line-height-none);
  text-transform: uppercase;
}
.vf-switch__state--on {
  left: 7px;
  color: var(--vf-interactive-primary-text);
  opacity: 0;
}
.vf-switch__state--off {
  right: 5px;
}
.vf-switch__input:checked + .vf-switch__control {
  border-color: var(--vf-interactive-primary);
  color: var(--vf-interactive-primary-text);
  background: var(--vf-interactive-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-status-error-indicator);
}
.vf-switch:has(.vf-switch__input:disabled) {
  color: var(--vf-control-disabled-text);
  cursor: not-allowed;
}
.vf-switch:has(.vf-switch__input:disabled) .vf-switch__control {
  border-color: var(--vf-control-disabled-border);
  background: var(--vf-control-disabled-background);
}
.vf-switch__content {
  display: grid;
  gap: 2px;
  min-width: 0;
}
.vf-switch__label {
  color: var(--vf-text-primary);
  font-family: var(--vf-type-label-font-family);
  font-size: var(--vf-type-label-font-size);
  font-weight: var(--vf-type-label-font-weight);
  line-height: var(--vf-type-label-line-height);
}
.vf-switch__description {
  color: var(--vf-text-secondary);
  font-family: var(--vf-type-caption-font-family);
  font-size: var(--vf-type-caption-font-size);
  line-height: var(--vf-type-caption-line-height);
}

/* src/styles/forms/validation-message.css */
.vf-validation-message {
  font-family: var(--vf-type-caption-font-family);
  font-size: var(--vf-type-caption-font-size);
  font-weight: var(--vf-type-caption-font-weight);
  line-height: var(--vf-type-caption-line-height);
  letter-spacing: var(--vf-type-caption-letter-spacing);
}
.vf-validation-message--success {
  color: var(--vf-status-success-text);
}
.vf-validation-message--error,
.vf-validation-message--danger {
  color: var(--vf-status-error-text);
}
.vf-validation-message--info {
  color: var(--vf-status-info-text);
}
.vf-validation-message--warning {
  color: var(--vf-status-warning-text);
}

/* src/styles/forms/rating.css */
.vf-rating {
  display: inline-grid;
  gap: var(--vf-component-gap);
  min-width: 0;
  margin: 0;
  border: 0;
  padding: 0;
  color: var(--vf-text-primary);
}
.vf-rating__label {
  padding: 0;
  color: var(--vf-text-primary);
  font-family: var(--vf-type-label-font-family);
  font-size: var(--vf-type-label-font-size);
  font-weight: var(--vf-type-label-font-weight);
  line-height: var(--vf-type-label-line-height);
}
.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-tertiary);
}
.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);
  transition: var(--vf-motion-transition-color);
}
.vf-rating__item--selected {
  color: var(--vf-status-warning-indicator);
}
.vf-rating__item--selected .vf-icon {
  fill: currentColor;
}
.vf-rating__item:hover .vf-rating__icon {
  color: var(--vf-status-warning-indicator);
  background: var(--vf-status-warning-background);
}
.vf-rating__input:focus-visible + .vf-rating__icon {
  outline: var(--vf-focus-width) solid var(--vf-focus-color);
  outline-offset: var(--vf-focus-offset);
}
.vf-rating--disabled {
  color: var(--vf-text-disabled);
}
.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-component-gap);
  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-primary);
  font-family: var(--vf-type-label-font-family);
  font-size: var(--vf-type-label-font-size);
  font-weight: var(--vf-type-label-font-weight);
  line-height: var(--vf-type-label-line-height);
}
.vf-slider__value,
.vf-slider__description {
  color: var(--vf-text-secondary);
  font-family: var(--vf-type-caption-font-family);
  font-size: var(--vf-type-caption-font-size);
  line-height: var(--vf-type-caption-line-height);
}
.vf-slider__value {
  font-variant-numeric: tabular-nums;
  font-weight: var(--vf-type-numeric-font-weight);
}
.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-interactive-primary);
  cursor: pointer;
}
.vf-slider__control::-webkit-slider-runnable-track {
  height: 6px;
  border-radius: 999px;
  background:
    linear-gradient(
      to right,
      var(--vf-interactive-primary) var(--vf-slider-progress),
      var(--vf-border-default) var(--vf-slider-progress));
}
.vf-slider__control::-webkit-slider-thumb {
  width: 18px;
  height: 18px;
  margin-top: -6px;
  border: 2px solid var(--vf-interactive-primary);
  border-radius: 50%;
  background: var(--vf-surface-overlay);
  box-shadow: var(--vf-shadow-sm);
  appearance: none;
}
.vf-slider__control::-moz-range-track {
  height: 6px;
  border-radius: 999px;
  background: var(--vf-border-default);
}
.vf-slider__control::-moz-range-progress {
  height: 6px;
  border-radius: 999px;
  background: var(--vf-interactive-primary);
}
.vf-slider__control::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border: 2px solid var(--vf-interactive-primary);
  border-radius: 50%;
  background: var(--vf-surface-overlay);
  box-shadow: var(--vf-shadow-sm);
}
.vf-slider__control:focus-visible {
  outline: var(--vf-focus-width) solid var(--vf-focus-color);
  outline-offset: var(--vf-focus-offset);
}
.vf-slider__control:disabled {
  cursor: not-allowed;
  opacity: 0.58;
}

/* 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/field.css */
.vf-field {
  display: grid;
  gap: var(--vf-component-gap);
  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-primary);
  font-family: var(--vf-type-label-font-family);
  font-size: var(--vf-type-label-font-size);
  font-weight: var(--vf-type-label-font-weight);
  line-height: var(--vf-type-label-line-height);
  letter-spacing: var(--vf-type-label-letter-spacing);
}
.vf-field__required {
  color: var(--vf-status-error-text);
}
.vf-field__description,
.vf-field__message {
  color: var(--vf-text-secondary);
  font-family: var(--vf-type-caption-font-family);
  font-size: var(--vf-type-caption-font-size);
  font-weight: var(--vf-type-caption-font-weight);
  line-height: var(--vf-type-caption-line-height);
  letter-spacing: var(--vf-type-caption-letter-spacing);
}
.vf-field--disabled {
  color: var(--vf-text-disabled);
}

/* 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-component-gap);
  min-height: var(--vf-control-height-md);
  border: 1px solid transparent;
  border-radius: var(--vf-radius-md);
  padding: var(--vf-control-padding-y-sm) var(--vf-control-padding-x-md);
  color: var(--vf-text-secondary);
  background: transparent;
  font-family: var(--vf-type-label-font-family);
  font-size: var(--vf-type-label-font-size);
  font-weight: var(--vf-type-label-font-weight);
  line-height: var(--vf-type-label-line-height);
  white-space: nowrap;
  cursor: pointer;
  transition: var(--vf-motion-transition-color);
}
.vf-tabs--sm .vf-tabs__tab {
  min-height: var(--vf-control-height-sm);
  padding-inline: var(--vf-control-padding-x-sm);
  font-size: var(--vf-type-caption-font-size);
}
.vf-tabs__tab:hover:not(:disabled) {
  color: var(--vf-text-primary);
  background: var(--vf-interactive-neutral-hover);
}
.vf-tabs__tab:disabled {
  color: var(--vf-text-disabled);
  cursor: not-allowed;
}
.vf-tabs__tab--selected {
  color: var(--vf-interactive-selected-text);
}
.vf-tabs--line .vf-tabs__list {
  border-bottom: 1px solid var(--vf-divider);
}
.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-interactive-selected-border);
  background: var(--vf-interactive-selected-background);
}
.vf-tabs--contained .vf-tabs__list,
.vf-tabs--pills .vf-tabs__list {
  width: fit-content;
  border: 1px solid var(--vf-border-default);
  border-radius: var(--vf-radius-lg);
  padding: 2px;
  background: var(--vf-surface-muted);
}
.vf-tabs--contained .vf-tabs__tab--selected,
.vf-tabs--pills .vf-tabs__tab--selected {
  border-color: var(--vf-interactive-selected-border);
  background: var(--vf-surface-default);
  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-primary);
}

/* src/styles/navigation/breadcrumbs.css */
.vf-breadcrumbs {
  min-width: 0;
  color: var(--vf-text-secondary);
  font-family: var(--vf-type-caption-font-family);
  font-size: var(--vf-type-caption-font-size);
  line-height: var(--vf-type-caption-line-height);
}
.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-text-link);
  background: transparent;
  text-decoration: none;
  cursor: pointer;
}
.vf-breadcrumbs__link:hover {
  color: var(--vf-text-link-hover);
  text-decoration: underline;
}
.vf-breadcrumbs__separator {
  color: var(--vf-text-tertiary);
}
.vf-breadcrumbs__current {
  min-width: 0;
  color: var(--vf-text-primary);
}

/* 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-primary);
  background: var(--vf-surface-default);
  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-component-gap);
  width: 100%;
  min-width: 0;
  min-height: var(--vf-control-height-md);
  border: 1px solid transparent;
  border-radius: var(--vf-radius-md);
  padding: var(--vf-control-padding-y-sm) var(--vf-control-padding-x-md);
  color: var(--vf-text-secondary);
  background: transparent;
  font-family: var(--vf-type-label-font-family);
  font-size: var(--vf-type-label-font-size);
  font-weight: var(--vf-type-label-font-weight);
  line-height: var(--vf-type-label-line-height);
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  transition: var(--vf-motion-transition-color);
}
.vf-side-nav__item:hover:not(:disabled) {
  color: var(--vf-text-primary);
  background: var(--vf-interactive-neutral-hover);
}
.vf-side-nav__item:disabled {
  color: var(--vf-text-disabled);
  cursor: not-allowed;
}
.vf-side-nav__item--active {
  border-color: var(--vf-interactive-selected-border);
  color: var(--vf-interactive-selected-text);
  background: var(--vf-interactive-selected-background);
}
.vf-side-nav__item--level-2 {
  min-height: var(--vf-control-height-sm);
  padding-inline: var(--vf-control-padding-x-sm);
  font-size: var(--vf-type-caption-font-size);
}
.vf-side-nav__icon {
  display: inline-flex;
  flex: 0 0 auto;
  width: var(--vf-icon-size-md);
  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/top-nav.css */
vf-top-nav.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-primary);
  background: var(--vf-surface-default);
}
vf-top-nav .vf-top-nav__brand {
  display: inline-flex;
  align-items: center;
  gap: var(--vf-component-gap);
  min-width: 0;
  color: var(--vf-text-primary);
  font-family: var(--vf-type-section-title-font-family);
  font-size: var(--vf-type-section-title-font-size);
  font-weight: var(--vf-type-section-title-font-weight);
  line-height: var(--vf-type-section-title-line-height);
}
vf-top-nav .vf-top-nav__navigation,
vf-top-nav .vf-top-nav__actions,
vf-top-nav .vf-top-nav__user {
  display: inline-flex;
  align-items: center;
  gap: var(--vf-component-gap);
  min-width: 0;
}
vf-top-nav .vf-top-nav__navigation {
  flex: 1 1 auto;
}
vf-top-nav .vf-top-nav__actions {
  justify-content: flex-end;
}

/* src/styles/native-elements.css */
:where([data-vf-element]) {
  box-sizing: border-box;
  color: var(--vf-text-primary, currentColor);
  font-family: var(--vf-font-family, system-ui, sans-serif);
}
:where(vf-text, vf-heading, vf-caption, vf-label, vf-code-text, vf-badge, vf-button, vf-icon-button, vf-toolbar-button, vf-toggle-button, vf-text-input, vf-textarea, vf-search-input, vf-number-input, vf-date-input, vf-datetime-input, vf-checkbox, vf-radio, vf-switch, vf-select, vf-slider, vf-rating, vf-validation-message) {
  display: inline-block;
}
:where(vf-card, vf-panel, vf-stack, vf-inline, vf-page, vf-section, vf-empty-state, vf-loading-state, vf-error-state, vf-button-group, vf-radio-group, vf-toggle-button-group, vf-segmented-control, vf-field, vf-tabs, vf-breadcrumbs, vf-side-nav) {
  display: block;
}
:where(vf-button, vf-icon-button, vf-toolbar-button, vf-toggle-button) > button {
  font: inherit;
}
:where(vf-text-input, vf-search-input, vf-number-input, vf-date-input, vf-datetime-input) > input,
vf-textarea > textarea,
vf-select > select {
  width: 100%;
}
vf-field > :where(vf-text-input, vf-textarea, vf-search-input, vf-number-input, vf-date-input, vf-datetime-input, vf-select) {
  width: 100%;
}

/* src/styles/forms/autocomplete.css */
vf-autocomplete.vf-autocomplete {
  position: relative;
  min-width: 0;
}
vf-autocomplete .vf-autocomplete__control {
  display: flex;
  align-items: center;
  min-width: 0;
  border: 1px solid var(--vf-control-border);
  border-radius: var(--vf-radius-md);
  color: var(--vf-text-primary);
  background: var(--vf-control-background);
  transition: var(--vf-motion-transition-color);
}
vf-autocomplete .vf-autocomplete__control:hover {
  border-color: var(--vf-control-border-hover);
  background: var(--vf-control-background-hover);
}
vf-autocomplete .vf-autocomplete__control:focus-within {
  border-color: var(--vf-focus-color);
  box-shadow: var(--vf-focus-shadow);
}
vf-autocomplete.vf-autocomplete--invalid .vf-autocomplete__control {
  border-color: var(--vf-status-error-indicator);
}
vf-autocomplete.vf-autocomplete--invalid .vf-autocomplete__control:focus-within {
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--vf-status-error-indicator) 24%, transparent);
}
vf-autocomplete .vf-autocomplete__input.vf-input {
  min-width: 0;
  border: 0;
  border-radius: inherit;
  background: transparent;
  box-shadow: none;
}
vf-autocomplete .vf-autocomplete__input.vf-input:focus-visible {
  outline: 0;
}
vf-autocomplete .vf-autocomplete__actions {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 2px;
  padding-right: 3px;
}
vf-autocomplete .vf-autocomplete__clear.vf-icon-button,
vf-autocomplete .vf-autocomplete__indicator.vf-icon-button {
  width: var(--vf-control-height-sm);
  height: var(--vf-control-height-sm);
  color: var(--vf-text-secondary);
}
vf-autocomplete .vf-autocomplete__clear.vf-icon-button:hover:not(:disabled),
vf-autocomplete .vf-autocomplete__indicator.vf-icon-button:hover:not(:disabled) {
  color: var(--vf-text-primary);
  background: var(--vf-interactive-neutral-hover);
}
vf-autocomplete .vf-autocomplete__loading {
  width: var(--vf-icon-size-sm);
  height: var(--vf-icon-size-sm);
  margin-inline: var(--vf-component-gap);
  border: 2px solid var(--vf-border-emphasis);
  border-top-color: var(--vf-interactive-primary);
  border-radius: 50%;
  animation: vf-autocomplete-spin var(--vf-motion-duration-deliberate) linear infinite;
}
vf-autocomplete.vf-autocomplete--disabled .vf-autocomplete__control {
  border-color: var(--vf-control-disabled-border);
  color: var(--vf-control-disabled-text);
  background: var(--vf-control-disabled-background);
  cursor: not-allowed;
}
vf-autocomplete.vf-autocomplete--read-only .vf-autocomplete__control {
  background: var(--vf-surface-muted);
}
vf-autocomplete.vf-autocomplete--read-only .vf-autocomplete__input {
  cursor: default;
}
vf-autocomplete .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 .vf-autocomplete__listbox {
  max-height: min(320px, calc(100vh - (var(--vf-space-6) * 2)));
  overflow: auto;
  border: 1px solid var(--vf-border-default);
  border-radius: var(--vf-radius-lg);
  padding: var(--vf-space-1);
  color: var(--vf-text-primary);
  background: var(--vf-surface-overlay);
  box-shadow: var(--vf-shadow-md);
}
vf-autocomplete .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;
  transition: var(--vf-motion-transition-color);
}
vf-autocomplete .vf-autocomplete__option--active {
  border-color: var(--vf-border-emphasis);
  background: var(--vf-interactive-neutral-hover);
}
vf-autocomplete .vf-autocomplete__option--selected {
  color: var(--vf-interactive-selected-text);
  background: var(--vf-interactive-selected-background);
}
vf-autocomplete .vf-autocomplete__option--active.vf-autocomplete__option--selected {
  border-color: var(--vf-interactive-selected-border);
}
vf-autocomplete .vf-autocomplete__option--disabled {
  color: var(--vf-text-disabled);
  cursor: not-allowed;
}
vf-autocomplete .vf-autocomplete__option-main {
  display: grid;
  gap: 2px;
  min-width: 0;
}
vf-autocomplete .vf-autocomplete__option-label {
  color: inherit;
  font-family: var(--vf-type-label-font-family);
  font-size: var(--vf-type-label-font-size);
  font-weight: var(--vf-type-label-font-weight);
  line-height: var(--vf-type-label-line-height);
}
vf-autocomplete .vf-autocomplete__option-description,
vf-autocomplete .vf-autocomplete__status {
  color: var(--vf-text-secondary);
  font-family: var(--vf-type-caption-font-family);
  font-size: var(--vf-type-caption-font-size);
  line-height: var(--vf-type-caption-line-height);
}
vf-autocomplete .vf-autocomplete__status {
  padding: var(--vf-space-3);
}
@keyframes vf-autocomplete-spin {
  to {
    transform: rotate(360deg);
  }
}
vf-autocomplete .vf-autocomplete__listbox[hidden] {
  display: none;
}

/* src/styles/forms/multi-select.css */
vf-multi-select.vf-multi-select {
  position: relative;
  display: grid;
  min-width: 0;
}
vf-multi-select .vf-multi-select__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--vf-component-gap);
  width: 100%;
  min-height: var(--vf-control-height);
  border: 1px solid var(--vf-control-border);
  border-radius: var(--vf-radius-md);
  padding: var(--vf-control-padding-y) var(--vf-control-padding-x);
  color: var(--vf-text-primary);
  background: var(--vf-control-background);
  font-family: var(--vf-type-body-font-family);
  font-size: var(--vf-type-body-font-size);
  line-height: var(--vf-type-body-line-height);
  text-align: left;
  cursor: pointer;
  transition: var(--vf-motion-transition-color);
}
vf-multi-select .vf-multi-select__trigger:hover:not(:disabled) {
  border-color: var(--vf-control-border-hover);
  background: var(--vf-control-background-hover);
}
vf-multi-select.vf-multi-select--invalid .vf-multi-select__trigger {
  border-color: var(--vf-status-error-indicator);
}
vf-multi-select .vf-multi-select__trigger:disabled {
  border-color: var(--vf-control-disabled-border);
  color: var(--vf-control-disabled-text);
  background: var(--vf-control-disabled-background);
  cursor: not-allowed;
}
vf-multi-select .vf-multi-select__value {
  display: flex;
  flex: 1 1 auto;
  flex-wrap: wrap;
  gap: var(--vf-space-1);
  min-width: 0;
}
vf-multi-select .vf-multi-select__placeholder,
vf-multi-select .vf-multi-select__chevron {
  color: var(--vf-text-secondary);
}
vf-multi-select .vf-multi-select__chip {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  border: 1px solid var(--vf-interactive-selected-border);
  border-radius: 999px;
  padding: 1px 8px;
  color: var(--vf-interactive-selected-text);
  background: var(--vf-interactive-selected-background);
  font-family: var(--vf-type-label-font-family);
  font-size: var(--vf-type-caption-font-size);
  font-weight: var(--vf-type-label-font-weight);
  line-height: var(--vf-type-label-line-height);
}
vf-multi-select .vf-multi-select__popover {
  position: absolute;
  z-index: var(--vf-layer-dropdown);
  top: calc(100% + var(--vf-space-1));
  left: 0;
  display: grid;
  gap: var(--vf-component-gap);
  width: min(100vw, max(100%, 280px));
  max-height: 320px;
  overflow: auto;
  border: 1px solid var(--vf-border-default);
  border-radius: var(--vf-radius-lg);
  padding: var(--vf-space-2);
  background: var(--vf-surface-overlay);
  box-shadow: var(--vf-shadow-md);
}
vf-multi-select .vf-multi-select__search {
  width: 100%;
}
vf-multi-select .vf-multi-select__list {
  display: grid;
  gap: var(--vf-space-1);
}
vf-multi-select .vf-multi-select__option {
  display: flex;
  align-items: flex-start;
  gap: var(--vf-component-gap);
  width: 100%;
  border: 0;
  border-radius: var(--vf-radius-md);
  padding: var(--vf-space-2);
  color: var(--vf-text-primary);
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: var(--vf-motion-transition-color);
}
vf-multi-select .vf-multi-select__option:hover,
vf-multi-select .vf-multi-select__option--active {
  background: var(--vf-interactive-neutral-hover);
}
vf-multi-select .vf-multi-select__option--selected {
  color: var(--vf-interactive-selected-text);
  background: var(--vf-interactive-selected-background);
}
vf-multi-select .vf-multi-select__option--disabled {
  color: var(--vf-text-disabled);
  cursor: not-allowed;
}
vf-multi-select .vf-multi-select__option-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 var(--vf-icon-size-md);
  width: var(--vf-icon-size-md);
  height: var(--vf-icon-size-md);
  border: 1px solid var(--vf-control-border-hover);
  border-radius: var(--vf-radius-sm);
  color: var(--vf-interactive-primary-text);
  background: var(--vf-control-background);
  font-family: var(--vf-type-label-font-family);
  font-size: var(--vf-type-caption-font-size);
  font-weight: var(--vf-font-weight-bold);
}
vf-multi-select .vf-multi-select__option--selected .vf-multi-select__option-check {
  border-color: var(--vf-interactive-primary);
  background: var(--vf-interactive-primary);
}
vf-multi-select .vf-multi-select__option-main {
  display: grid;
  gap: 2px;
  min-width: 0;
}
vf-multi-select .vf-multi-select__option-label {
  color: inherit;
  font-family: var(--vf-type-label-font-family);
  font-size: var(--vf-type-label-font-size);
  font-weight: var(--vf-type-label-font-weight);
  line-height: var(--vf-type-label-line-height);
}
vf-multi-select .vf-multi-select__option-description,
vf-multi-select .vf-multi-select__empty {
  color: var(--vf-text-secondary);
  font-family: var(--vf-type-caption-font-family);
  font-size: var(--vf-type-caption-font-size);
  line-height: var(--vf-type-caption-line-height);
}
vf-multi-select .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-text-link);
  background: transparent;
  font-family: var(--vf-type-label-font-family);
  font-size: var(--vf-type-caption-font-size);
  font-weight: var(--vf-type-label-font-weight);
  cursor: pointer;
}
vf-multi-select .vf-multi-select__clear:hover {
  color: var(--vf-text-link-hover);
  background: var(--vf-interactive-neutral-hover);
}
vf-multi-select .vf-multi-select__popover[hidden] {
  display: none;
}

/* src/styles/forms/transfer-list.css */
vf-transfer-list.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 .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-default);
  border-radius: var(--vf-radius-lg);
  padding: var(--vf-space-3);
  background: var(--vf-surface-default);
}
vf-transfer-list.vf-transfer-list--invalid .vf-transfer-list__panel {
  border-color: var(--vf-status-error-indicator);
}
vf-transfer-list.vf-transfer-list--disabled,
vf-transfer-list.vf-transfer-list--read-only {
  color: var(--vf-text-disabled);
}
vf-transfer-list .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 .vf-transfer-list__panel-heading {
  display: grid;
  gap: var(--vf-space-1);
  min-width: 0;
}
vf-transfer-list .vf-transfer-list__panel-title {
  margin: 0;
  color: var(--vf-text-primary);
  font-family: var(--vf-type-section-title-font-family);
  font-size: var(--vf-type-section-title-font-size);
  font-weight: var(--vf-type-section-title-font-weight);
  line-height: var(--vf-type-section-title-line-height);
  letter-spacing: var(--vf-type-section-title-letter-spacing);
}
vf-transfer-list .vf-transfer-list__panel-description {
  margin: 0;
  color: var(--vf-text-secondary);
  font-family: var(--vf-type-caption-font-family);
  font-size: var(--vf-type-caption-font-size);
  line-height: var(--vf-type-caption-line-height);
}
vf-transfer-list .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 .vf-transfer-list__search {
  width: 100%;
}
vf-transfer-list .vf-transfer-list__select-all {
  display: inline-flex;
  align-items: center;
  gap: var(--vf-component-gap);
  width: fit-content;
  color: var(--vf-text-secondary);
  font-family: var(--vf-type-caption-font-family);
  font-size: var(--vf-type-caption-font-size);
  line-height: var(--vf-type-caption-line-height);
  cursor: pointer;
}
vf-transfer-list .vf-transfer-list__select-all:has(input:disabled) {
  color: var(--vf-text-disabled);
  cursor: not-allowed;
}
vf-transfer-list .vf-transfer-list__options {
  display: grid;
  align-content: start;
  gap: var(--vf-space-1);
  min-width: 0;
  min-height: 168px;
  max-height: 360px;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 2px;
}
vf-transfer-list .vf-transfer-list__option {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: flex-start;
  gap: var(--vf-component-gap);
  border: 1px solid transparent;
  border-radius: var(--vf-radius-md);
  padding: var(--vf-space-2);
  color: var(--vf-text-primary);
  cursor: pointer;
  transition: var(--vf-motion-transition-color);
}
vf-transfer-list .vf-transfer-list__option:hover:not(.vf-transfer-list__option--disabled),
vf-transfer-list .vf-transfer-list__option--active:not(.vf-transfer-list__option--disabled) {
  border-color: var(--vf-border-emphasis);
  background: var(--vf-interactive-neutral-hover);
}
vf-transfer-list .vf-transfer-list__option--selected {
  border-color: var(--vf-interactive-selected-border);
  color: var(--vf-interactive-selected-text);
  background: var(--vf-interactive-selected-background);
}
vf-transfer-list .vf-transfer-list__option--disabled {
  color: var(--vf-text-disabled);
  cursor: not-allowed;
}
vf-transfer-list .vf-transfer-list__option-content {
  display: grid;
  gap: 2px;
  min-width: 0;
}
vf-transfer-list .vf-transfer-list__option-label {
  color: inherit;
  font-family: var(--vf-type-label-font-family);
  font-size: var(--vf-type-label-font-size);
  font-weight: var(--vf-type-label-font-weight);
  line-height: var(--vf-type-label-line-height);
  overflow-wrap: anywhere;
}
vf-transfer-list .vf-transfer-list__option-description,
vf-transfer-list .vf-transfer-list__empty {
  color: var(--vf-text-secondary);
  font-family: var(--vf-type-caption-font-family);
  font-size: var(--vf-type-caption-font-size);
  line-height: var(--vf-type-caption-line-height);
}
vf-transfer-list .vf-transfer-list__empty {
  display: grid;
  min-height: 120px;
  place-items: center;
  border: 1px dashed var(--vf-border-default);
  border-radius: var(--vf-radius-md);
  padding: var(--vf-space-4);
  text-align: center;
}
vf-transfer-list .vf-transfer-list__actions {
  display: grid;
  align-content: center;
  gap: var(--vf-component-gap);
  min-width: 148px;
}
vf-transfer-list .vf-transfer-list__actions .vf-button {
  justify-content: center;
}
@media (max-width: 760px) {
  vf-transfer-list.vf-transfer-list {
    grid-template-columns: minmax(0, 1fr);
  }
  vf-transfer-list .vf-transfer-list__actions {
    grid-row: 2;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-width: 0;
  }
  vf-transfer-list .vf-transfer-list__panel {
    min-height: 280px;
  }
}

/* src/styles/overlays/dialog.css */
vf-dialog.vf-dialog-root,
vf-drawer.vf-drawer-root {
  position: fixed;
  inset: 0;
  z-index: var(--vf-layer-modal);
  pointer-events: none;
}
vf-dialog.vf-dialog-root--open,
vf-drawer.vf-drawer-root--open {
  pointer-events: auto;
}
vf-dialog .vf-dialog__backdrop,
vf-drawer .vf-drawer__backdrop {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: var(--vf-space-4);
  background: var(--vf-surface-scrim);
}
vf-dialog .vf-dialog,
vf-drawer .vf-drawer {
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr);
  width: min(100%, 560px);
  max-height: calc(100vh - 32px);
  border: 1px solid var(--vf-border-default);
  border-radius: var(--vf-radius-lg);
  color: var(--vf-text-primary);
  background: var(--vf-surface-overlay);
  box-shadow: var(--vf-shadow-md);
}
vf-dialog .vf-dialog--sm {
  max-width: 400px;
}
vf-dialog .vf-dialog--md {
  max-width: 560px;
}
vf-dialog .vf-dialog--lg {
  max-width: 720px;
}
vf-dialog .vf-dialog--xl {
  max-width: 920px;
}
vf-dialog .vf-dialog__header,
vf-drawer .vf-drawer__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--vf-space-4);
  border-bottom: 1px solid var(--vf-divider);
  padding: var(--vf-space-4);
}
vf-dialog .vf-dialog__title,
vf-drawer .vf-drawer__title {
  margin: 0;
  font-family: var(--vf-type-section-title-font-family);
  font-size: var(--vf-type-section-title-font-size);
  font-weight: var(--vf-type-section-title-font-weight);
  line-height: var(--vf-type-section-title-line-height);
}
vf-dialog .vf-dialog__description,
vf-drawer .vf-drawer__description {
  margin: 0;
  padding: 0 var(--vf-space-4);
  color: var(--vf-text-secondary);
}
vf-dialog .vf-dialog__body,
vf-drawer .vf-drawer__body {
  min-height: 0;
  overflow: auto;
  padding: var(--vf-space-4);
}
vf-dialog .vf-dialog__close,
vf-drawer .vf-drawer__close {
  flex: none;
}
vf-dialog > .vf-dialog__backdrop[hidden],
vf-drawer > .vf-drawer__backdrop[hidden] {
  display: none;
}

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

/* src/styles/overlays/popover.css */
vf-popover.vf-popover-root,
vf-tooltip.vf-tooltip-root,
vf-menu.vf-menu-root {
  position: relative;
  display: inline-flex;
}
vf-popover .vf-popover__trigger,
vf-tooltip .vf-tooltip__trigger,
vf-menu .vf-menu__trigger {
  display: inline-flex;
}
vf-popover .vf-popover {
  position: absolute;
  z-index: var(--vf-layer-popover);
  top: calc(100% + var(--vf-popover-offset, 6px));
  left: 0;
  min-width: 220px;
  max-width: min(420px, calc(100vw - (var(--vf-space-4) * 2)));
  border: 1px solid var(--vf-border-default);
  border-radius: var(--vf-radius-lg);
  padding: var(--vf-space-3);
  color: var(--vf-text-primary);
  background: var(--vf-surface-overlay);
  box-shadow: var(--vf-shadow-md);
}
vf-popover .vf-popover--top,
vf-popover .vf-popover--top-start,
vf-popover .vf-popover--top-end {
  top: auto;
  bottom: calc(100% + var(--vf-popover-offset, 6px));
}
vf-popover .vf-popover--align-center {
  left: 50%;
  transform: translateX(-50%);
}
vf-popover .vf-popover--align-end {
  right: 0;
  left: auto;
}
vf-popover .vf-popover[hidden] {
  display: none;
}

/* src/styles/overlays/dropdown.css */
vf-popover .vf-dropdown {
  display: grid;
  gap: var(--vf-component-gap);
  min-width: min(20rem, calc(100vw - var(--vf-space-6)));
  padding: var(--vf-space-3);
  color: var(--vf-text-primary);
  background: var(--vf-surface-raised);
}

/* src/styles/overlays/menu.css */
vf-menu .vf-menu {
  position: absolute;
  z-index: var(--vf-layer-popover);
  top: calc(100% + var(--vf-space-1));
  left: 0;
  display: grid;
  gap: var(--vf-space-1);
  min-width: 220px;
  border: 1px solid var(--vf-border-default);
  border-radius: var(--vf-radius-lg);
  padding: var(--vf-space-2);
  background: var(--vf-surface-overlay);
  box-shadow: var(--vf-shadow-md);
}
vf-menu .vf-menu--sm {
  min-width: 180px;
}
vf-menu .vf-menu--lg {
  min-width: 280px;
}
vf-menu .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-primary);
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
}
vf-menu .vf-menu__item:hover:not(:disabled),
vf-menu .vf-menu__item:focus-visible {
  background: var(--vf-interactive-neutral-hover);
}
vf-menu .vf-menu__item--selected {
  background: var(--vf-interactive-selected-background);
}
vf-menu .vf-menu__item--danger {
  color: var(--vf-status-error-text);
}
vf-menu .vf-menu__shortcut {
  color: var(--vf-text-secondary);
  font-size: var(--vf-type-caption-font-size);
}
vf-menu .vf-menu[hidden] {
  display: none;
}

/* src/styles/overlays/tooltip.css */
vf-tooltip .vf-tooltip {
  position: absolute;
  z-index: var(--vf-layer-tooltip);
  bottom: calc(100% + var(--vf-tooltip-offset, 6px));
  left: 50%;
  max-width: 260px;
  transform: translateX(-50%);
  border: 1px solid var(--vf-border-default);
  border-radius: var(--vf-radius-md);
  padding: var(--vf-space-2) var(--vf-space-3);
  color: var(--vf-text-primary);
  background: var(--vf-surface-overlay);
  box-shadow: var(--vf-shadow-sm);
  font-size: var(--vf-type-caption-font-size);
  line-height: var(--vf-type-caption-line-height);
  pointer-events: none;
  white-space: normal;
}
vf-tooltip .vf-tooltip--bottom {
  top: calc(100% + var(--vf-tooltip-offset, 6px));
  bottom: auto;
}
vf-tooltip .vf-tooltip--left {
  top: 50%;
  right: calc(100% + var(--vf-tooltip-offset, 6px));
  bottom: auto;
  left: auto;
  transform: translateY(-50%);
}
vf-tooltip .vf-tooltip--right {
  top: 50%;
  bottom: auto;
  left: calc(100% + var(--vf-tooltip-offset, 6px));
  transform: translateY(-50%);
}
vf-tooltip .vf-tooltip[hidden] {
  display: none;
}

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

/* src/styles/feedback/toast.css */
vf-toast-viewport.vf-toast-viewport {
  position: fixed;
  z-index: var(--vf-layer-toast);
  display: grid;
  gap: var(--vf-component-gap);
  width: min(420px, calc(100vw - 32px));
  max-width: calc(100vw - 32px);
  pointer-events: none;
}
vf-toast-viewport.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.vf-toast-viewport--top-center {
  top: max(var(--vf-space-4), env(safe-area-inset-top));
  left: 50%;
  transform: translateX(-50%);
}
vf-toast-viewport.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.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.vf-toast-viewport--bottom-center {
  bottom: max(var(--vf-space-4), env(safe-area-inset-bottom));
  left: 50%;
  transform: translateX(-50%);
}
vf-toast-viewport.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.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-default);
  border-radius: var(--vf-radius-lg);
  padding: var(--vf-space-3);
  color: var(--vf-text-primary);
  background: var(--vf-surface-overlay);
  box-shadow: var(--vf-shadow-md);
  pointer-events: auto;
}
vf-toast .vf-toast__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  color: var(--vf-status-neutral-text);
  background: var(--vf-status-neutral-background);
}
vf-toast .vf-toast__content {
  display: grid;
  gap: 2px;
  min-width: 0;
}
vf-toast .vf-toast__title {
  color: var(--vf-text-primary);
  font-family: var(--vf-type-label-font-family);
  font-size: var(--vf-type-label-font-size);
  font-weight: var(--vf-type-label-font-weight);
  line-height: var(--vf-type-label-line-height);
  letter-spacing: var(--vf-type-label-letter-spacing);
  overflow-wrap: anywhere;
}
vf-toast .vf-toast__description {
  color: var(--vf-text-secondary);
  font-family: var(--vf-type-body-font-family);
  font-size: var(--vf-type-body-font-size);
  font-weight: var(--vf-type-body-font-weight);
  line-height: var(--vf-type-body-line-height);
  letter-spacing: var(--vf-type-body-letter-spacing);
  overflow-wrap: anywhere;
}
vf-toast .vf-toast__action {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}
vf-toast .vf-toast__dismiss {
  margin-top: -4px;
}
vf-toast.vf-toast--info {
  border-color: var(--vf-status-info-border);
}
vf-toast.vf-toast--info .vf-toast__icon {
  color: var(--vf-status-info-text);
  background: var(--vf-status-info-background);
}
vf-toast.vf-toast--success {
  border-color: var(--vf-status-success-border);
}
vf-toast.vf-toast--success .vf-toast__icon {
  color: var(--vf-status-success-text);
  background: var(--vf-status-success-background);
}
vf-toast.vf-toast--warning {
  border-color: var(--vf-status-warning-border);
}
vf-toast.vf-toast--warning .vf-toast__icon {
  color: var(--vf-status-warning-text);
  background: var(--vf-status-warning-background);
}
vf-toast.vf-toast--error {
  border-color: var(--vf-status-error-border);
}
vf-toast.vf-toast--error .vf-toast__icon {
  color: var(--vf-status-error-text);
  background: var(--vf-status-error-background);
}
@media (max-width: 560px) {
  vf-toast-viewport.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.vf-toast {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }
  vf-toast .vf-toast__action {
    grid-column: 2 / -1;
    justify-content: flex-start;
  }
}
@media (prefers-reduced-motion: no-preference) {
  vf-toast.vf-toast {
    animation: vf-toast-enter var(--vf-motion-duration-standard) var(--vf-motion-easing-enter);
  }
}
@keyframes vf-toast-enter {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* src/styles/layout/app-shell.css */
vf-app-shell.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-primary);
  background: var(--vf-surface-page);
}
vf-app-shell.vf-app-shell--full-height {
  height: var(--vf-app-shell-min-height);
}
vf-app-shell.vf-app-shell--scroll-content,
vf-app-shell.vf-app-shell--scroll-split {
  overflow: hidden;
}
vf-app-shell.vf-app-shell--scroll-page {
  height: auto;
  overflow: visible;
}
vf-app-shell .vf-app-shell__header {
  z-index: calc(var(--vf-layer-sticky) + 2);
  min-height: var(--vf-app-shell-header-height);
  border-bottom: 1px solid var(--vf-border-default);
  background: var(--vf-surface-default);
}
vf-app-shell.vf-app-shell--header-static .vf-app-shell__header {
  position: static;
}
vf-app-shell.vf-app-shell--header-sticky .vf-app-shell__header {
  position: sticky;
  top: 0;
}
vf-app-shell.vf-app-shell--header-fixed .vf-app-shell__header {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
}
vf-app-shell .vf-app-shell__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  min-height: 0;
}
vf-app-shell.vf-app-shell--scroll-content .vf-app-shell__body,
vf-app-shell.vf-app-shell--scroll-split .vf-app-shell__body {
  overflow: hidden;
}
vf-app-shell.vf-app-shell--header-fixed .vf-app-shell__body {
  padding-top: var(--vf-app-shell-header-height);
}
vf-app-shell.vf-app-shell--with-sidebar .vf-app-shell__body {
  grid-template-columns: var(--vf-app-shell-sidebar-width) minmax(0, 1fr);
}
vf-app-shell.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 .vf-app-shell__sidebar {
  position: relative;
  z-index: var(--vf-layer-sticky);
  display: grid;
  min-width: 0;
  min-height: 0;
  border-right: 1px solid var(--vf-border-default);
  background: var(--vf-surface-default);
  overflow: hidden;
}
vf-app-shell .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.vf-app-shell--sidebar-static .vf-app-shell__sidebar {
  position: relative;
}
vf-app-shell.vf-app-shell--sidebar-sticky .vf-app-shell__sidebar {
  position: sticky;
  top: 0;
  align-self: start;
  max-height: 100dvh;
}
vf-app-shell.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.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.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.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.vf-app-shell--scroll-content .vf-app-shell__sidebar,
vf-app-shell.vf-app-shell--scroll-split .vf-app-shell__sidebar {
  align-self: stretch;
  height: 100%;
}
vf-app-shell.vf-app-shell--scroll-page .vf-app-shell__sidebar {
  max-height: 100dvh;
}
vf-app-shell.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 .vf-app-shell__main {
  min-width: 0;
  min-height: 0;
}
vf-app-shell.vf-app-shell--scroll-content .vf-app-shell__main,
vf-app-shell.vf-app-shell--scroll-split .vf-app-shell__main {
  overflow-x: hidden;
  overflow-y: auto;
}
vf-app-shell.vf-app-shell--scroll-page .vf-app-shell__main {
  overflow: visible;
}
vf-app-shell.vf-app-shell--sidebar-fixed.vf-app-shell--with-sidebar .vf-app-shell__main {
  margin-inline-start: 0;
}
vf-app-shell .vf-app-shell__content {
  min-width: 0;
  min-height: 0;
}
vf-app-shell .vf-app-shell__footer {
  z-index: calc(var(--vf-layer-sticky) + 1);
  border-top: 1px solid var(--vf-border-default);
  background: var(--vf-surface-default);
}

/* src/styles/layout/page-header.css */
vf-page-header.vf-page-header {
  display: grid;
  gap: var(--vf-space-3);
  min-width: 0;
}
vf-page-header .vf-page-header__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--vf-space-4);
}
vf-page-header .vf-page-header__main {
  display: grid;
  gap: var(--vf-component-gap);
  min-width: 0;
}
vf-page-header .vf-page-header__breadcrumbs {
  min-width: 0;
}
vf-page-header .vf-page-header__eyebrow {
  color: var(--vf-text-tertiary);
  font-family: var(--vf-type-label-font-family);
  font-size: var(--vf-type-label-font-size);
  font-weight: var(--vf-type-label-font-weight);
  line-height: var(--vf-type-label-line-height);
  letter-spacing: var(--vf-type-label-letter-spacing);
}
vf-page-header .vf-page-header__title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--vf-component-gap);
  min-width: 0;
}
vf-page-header .vf-page-header__title {
  margin: 0;
  color: var(--vf-text-primary);
  font-family: var(--vf-type-page-title-font-family);
  font-size: var(--vf-type-page-title-font-size);
  font-weight: var(--vf-type-page-title-font-weight);
  line-height: var(--vf-type-page-title-line-height);
  letter-spacing: var(--vf-type-page-title-letter-spacing);
}
vf-page-header .vf-page-header__status,
vf-page-header .vf-page-header__metadata,
vf-page-header .vf-page-header__actions {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--vf-component-gap);
}
vf-page-header .vf-page-header__description {
  max-width: 72ch;
  color: var(--vf-text-secondary);
  font-family: var(--vf-type-body-font-family);
  font-size: var(--vf-type-body-font-size);
  font-weight: var(--vf-type-body-font-weight);
  line-height: var(--vf-type-body-line-height);
  letter-spacing: var(--vf-type-body-letter-spacing);
}
vf-page-header .vf-page-header__metadata {
  color: var(--vf-text-tertiary);
  font-family: var(--vf-type-caption-font-family);
  font-size: var(--vf-type-caption-font-size);
  line-height: var(--vf-type-caption-line-height);
}
vf-page-header .vf-page-header__actions {
  justify-content: flex-end;
}

/* src/styles/layout/page-toolbar.css */
vf-page-toolbar.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-default);
  border-radius: var(--vf-radius-lg);
  padding: var(--vf-space-3);
  background: var(--vf-surface-default);
}
vf-page-toolbar.vf-page-toolbar--compact {
  padding: var(--vf-space-2);
}
vf-page-toolbar.vf-page-toolbar--comfortable {
  padding: var(--vf-space-4);
}
vf-page-toolbar.vf-page-toolbar--sticky {
  position: sticky;
  top: 0;
  z-index: var(--vf-layer-sticky);
}
vf-page-toolbar .vf-page-toolbar__left,
vf-page-toolbar .vf-page-toolbar__right {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--vf-space-2);
  min-width: 0;
}
vf-page-toolbar .vf-page-toolbar__right {
  justify-content: flex-end;
}

/* src/styles/index.css */
