@import url("/css/fonts.css");
@import url("/css/blazor.css");
@import url("/css/buttons.css");
@import url("/css/inputs.css");
@import url("/css/tables.css");
@import url("/css/svg.css");
@import url("/css/utilities.css");
@import url("/css/utilities-flex.css");
@import url("/css/utilities-grid.css");
@import url("/css/utilities-mp.css");

:root {
    --bg-color-base: #283237;
    --bg-color-window: #151D21;
    --bg-color-section: #1f282e;
    --bg-color-popover: #1E282E;
    
    --detail-black-color: #000000;
    --borders-lines-color: #707070;
    
    --color-accent-main: #00A3FD;
    --color-accent--secondary-orange: #FD9200;
    --color-accent-secondary-purple: #EA34FC;
    
    
    --bg-color-primary: #283237;
    --bg-color-accent: #151D21;
    
    --border-color-divider: #000000;
    
    --rounded-radius-default: 12px;
    --rounded-radius-small: 5px;
    
    --accent-color: #04a2fc;
    --color-gray: #546c79;
    --color-green: #20a976;
    --color-green-darken: #284339;
    
    --color-red-1: #D80053;
    --color-red: #c43844;
    --color-red-darken: #67292e;
    
    
    
    --color-orange: #fd7e14;
    --color-orange-darken: #574332;

    --bg-color-accent-prev: #1f282d;
    
    --header-height: 4.3rem;
}

html {
    font-size: 16px;
    font-family: 'Red Hat Display', sans-serif;
    font-weight: 500; /* Medium */
    color: #ffffff;
    height: 100%;
}

body {
    max-width: 100vw;
    margin: 0px;
    overflow-x: hidden;
    box-sizing: border-box;
    font-size: 13px;
    background-color: var(--bg-color-base);
    height: 100%;
    position: relative;
}

#app {
    width: 100%;
}

* {
    font-family: 'Red Hat Display', sans-serif;
}
