/* Base styles and reset */

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

html {
    height: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #f5f5f5;
    color: #333;
    line-height: 1.6;
    min-height: 100%;
}

/* Ensure body with sidebar fills viewport */
body.has-sidebar {
    min-height: 100vh;
    background: white;
}
