/* layout.css */
/* GLOBAL LAYOUT FIX — ensures content is not under sidebar */

body {
    margin: 0;
    background: var(--bg, #0b0b0b);
    color: var(--text, #fff);
    font-family: Inter, system-ui, sans-serif;
}

/* GLOBAL LAYOUT — restores sidebar + content behavior */



#content {
    margin-left: 220px;
    padding: 20px;
    box-sizing: border-box;
}
