/* DE_PC2 v2.0 — themes.css */
/* Light/dark toggling handled via [data-theme] on <html> */
/* Variables defined in variables.css */

/* Smooth theme transitions */
html {
  transition: background-color 0.2s ease, color 0.2s ease;
}

/* Scrollbar styling */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}
*::-webkit-scrollbar { width: 6px; height: 6px; }
*::-webkit-scrollbar-track { background: transparent; }
*::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
*::-webkit-scrollbar-thumb:hover { background: var(--text-muted); }

/* @v1776352182 */