/**
 * Universal Text Selection Styling
 *
 * Applies inverse video to all text selection throughout Shell.
 * Uses theme tokens for consistency across all components and plugins.
 *
 * Inverse video pattern:
 * - Selection background: theme text color
 * - Selection text: theme background color
 */

::selection {
  background: var(--theme-text);
  color: var(--theme-background);
}

::-moz-selection {
  background: var(--theme-text);
  color: var(--theme-background);
}
