/*
 * Theme Tokens - CSS Custom Properties
 * These variables are automatically available in all LWC components
 */
:root {
    /* Brand Colors */
    --color-brand-blue: #5dbee2;
    --x-light-grey: #303038;
    --light-grey: #303038;
    --medium-grey: #303038;
    --dark-grey: #303038;
    --color-brand-green: #85c023;
    --color-brand-red: #e30613;

    /* Component Specific - Sidebar */
    --sidebar-background: #001e48;
    --sidebar-item-color: #ffffff;
    --sidebar-item-background-active: color-mix(in srgb, #5dbee2, transparent 80%);

    --color-divider: #303038;
}
/*
 * Your global styles here
 */
html,
body {
    height: 100%;
}

html {
    background: white;
}

body {
    margin: 0;
}
