/* Main CSS styles for the application */

body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    height: 100vh;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Dark mode */
[data-theme="dark"] body {
    background-color: #222;
    color: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
}

#root {
    margin-left: auto;
    margin-right: auto;
    font-family: Inter;
    min-height: 100vh;
    transition: background-color 0.3s ease;
}

[data-theme="dark"] #root {
    background-color: #222;
}


p, ul {
    margin: 0;    
}
