/* 
   Style.css - Minimal Reset 
   Primary styling is now handled by Tailwind CSS classes in index.html.
   Kept empty to avoid conflicts, but available for custom overrides if needed.
*/
:root {
    --bg-main: #ffffff;
    --text-main: #000000;
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
}