/* Global Styles for Wordle Tracker (Material Design inspired) */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    min-height: 100%;
    margin: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: var(--bg-primary, #f5f5f5);
    min-height: 100vh;
    padding: 0;
    color: var(--text-primary, #1a1a1a);
    transition: background 0.3s, color 0.3s;
}

/* Ensure web components render properly */
wordle-app {
    display: block;
}
