/**
 * Minimal Reset and Base Styles
 * Most styles are inline in index.html
 */

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

html, body {
    margin: 0;
    padding: 0;
}

/* Essential base styles if needed */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Clear floats */
.clearfix::after {
    content: "";
    display: table;
    clear: both;
}
