Svelte Guideline: Styling — Use scoped styles by default. Description: Styles scoped to component. Do: <style> for component styles. Don't: Global styles for component. Good Example: :global() only when needed. Bad Example: <style> all global. Severity: Medium. Docs: https://svelte.dev/docs/svelte-components#style.