:root {
    /* Brand colours based on the Figma design file */
    --primary: #1A1A1A;
    --primary-muted: rgba(26, 26, 26, 0.1);
    --bg-color: #EDEAE4;
    --sidebar-bg: #FFFFFF;
    --card-bg: #F5F3EF;
    --text-main: #1A1A1A;
    --text-muted: #6B6B6B;
    --border: rgba(0, 0, 0, 0.1);
    --border-hover: rgba(0, 0, 0, 0.2);

    /* Shared border radius values to keep corners consistent across components */
    --radius-lg: 24px;
    --radius-md: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body {
    background: var(--bg-color);
    color: var(--text-main);
}
