
:root {

    /*Colors - backgrounds*/
    --bg-primary: #1c1c1c;
    --bg-secondary: #292929;
    --bg-tertiary: #393939;

    /*Colors - text*/
    --text-primary: #ffffff;
    --text-secondary: #B0B0B0;
    --text-tertiary: #E6E6E6;

    /*Colors - borders*/
    --border-card: #5D5D5D;
    --border-action: #333333;

    /*Colors - status*/
    --status-success: #49ED33;
    --status-warning: #ED8A33; 
    --status-info: #3368ED;

}

/* Defaults */

* {
    box-sizing:border-box;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    margin: 0;
}

.full-layout {
    margin-top: 3rem;
}

.content-layout {
    margin-top: 4rem;
}

button {
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
}