/* Lädt das komplette Tailwind CSS System (Version 4) */ @import "tailwindcss"; /* Der Zauberbefehl: Erlaubt uns, den Dark Mode manuell über unsere App-Buttons zu steuern */ @custom-variant dark (&:is(.dark *)); /* Ein paar globale Grundeinstellungen, damit sich alles wie eine native App anfühlt */ html, body { margin: 0; padding: 0; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; /* Verhindert das nervige seitliche Wackeln auf dem Handy */ overflow-x: hidden; }