body {
    height: 100vh;
    margin: 0;
    padding: 0;
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.mud-main-content {
    height: 100vh;
}

/* Initialize theme on page load */
html {
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Default light theme */
:root {
    color-scheme: light;
}

/* Dark theme */
[data-theme="dark"] {
    color-scheme: dark;
}

/* Theme initialization script to prevent flash */