@import 'fonts.css';
@import 'vars.css';
@import 'scrollbar.css';
@import 'main.css';

@tailwind base;
@tailwind components;
@tailwind utilities;

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

#modals_container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 100;
}
#tooltips_container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 200;
}
