:root {
    --color-primary: #000000;
    --color-secondary: #fefbea;
    --color-text: #000000;
    --color-accent: #f7c25c;
    --color-7dc45e9: #756f64;
    --color-9fa6c76: #8c867a;
    --color-highlight: #fffaa0;
}
* {
    box-sizing: border-box;
    -webkit-print-color-adjust: exact !important; /* Chrome, Safari */
    color-adjust: exact !important;
}
body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans",
        "Droid Sans", "Helvetica Neue", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.cg .thin {
    font-weight: 100;
}
.cg .light {
    font-weight: 300;
}
.cg .regular {
    font-weight: 400;
}
.cg .medium {
    font-weight: 500;
}
.cg .semi {
    font-weight: 600;
}
.cg .bold {
    font-weight: 700;
}
.cg .black {
    font-weight: 900;
}
/* flex */
.cg .col {
    display: flex;
    flex-direction: column;
}
.cg .row {
    display: flex;
    flex-direction: row;
}
.cg .rss {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
}
.cg .res {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: flex-start;
}
.cg .rsc {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}
.cg .rsb {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: baseline;
}
.cg .rse {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-end;
}
.cg .rbe {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: flex-end;
}
.cg .rec {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
}
.cg .reb {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: baseline;
}
.cg .rcc {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.cg .rcb {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: baseline;
}
.cg .ccc {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.cg .css {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.cg .csc {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}
.cg .ccs {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}
.cg .cce {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
}
.cg .cec {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
}
.cg .cse {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
}
.cg .flex,
.cg .flex-1 {
    flex-basis: 0;
    flex-grow: 1;
}
.cg .flex-2 {
    flex-basis: 0;
    flex-grow: 2;
}
.cg .flex-3 {
    flex-basis: 0;
    flex-grow: 3;
}
.cg .flex-4 {
    flex-basis: 0;
    flex-grow: 4;
}
.cg .flex-5 {
    flex-basis: 0;
    flex-grow: 5;
}
.cg .flex-6 {
    flex-basis: 0;
    flex-grow: 6;
}
.cg .flex-7 {
    flex-basis: 0;
    flex-grow: 7;
}
.cg .flex-8 {
    flex-basis: 0;
    flex-grow: 8;
}
.cg .flex-9 {
    flex-basis: 0;
    flex-grow: 9;
}
.cg .flex-10 {
    flex-basis: 0;
    flex-grow: 10;
}
.cg .flex-w {
    flex-wrap: wrap;
}
.cg .space-around {
    justify-content: space-around;
}
.cg .space-between {
    justify-content: space-between;
}
/* gap */
.cg .gap-n {
    gap: 0.25em;
}
.cg .gap-a {
    gap: 0.5em;
}
.cg .gap-t {
    gap: 0.75em;
}
.cg .gap-s {
    gap: 1em;
}
.cg .gap-m {
    gap: 1.5em;
}
.cg .gap-l {
    gap: 2em;
}
.cg .gap-x {
    gap: 2.5em;
}
.cg .gap-x2 {
    gap: 3em;
}
.cg .gap-x3 {
    gap: 3.5em;
}
.cg .gap-x4 {
    gap: 4em;
}
/* padding */
.cg .pad-z {
    padding: 0 !important;
}
.cg .pad-a {
    padding: 0.65em;
}
.cg .pad-t {
    padding: 0.75em;
}
.cg .pad-s {
    padding: 1em;
}
.cg .pad-m {
    padding: 1.5em;
}
.cg .pad-l {
    padding: 2em;
}
.cg .pad-x {
    padding: 2.5em;
}
.cg .pad-h {
    padding: 3em;
}
.cg .pad-wz {
    padding: 0 !important;
}
.cg .pad-wa {
    padding: 0.75em 1.35em;
}
.cg .pad-wt {
    padding: 0.95em 1.65em;
}
.cg .pad-ws {
    padding: 1.25em 1.85em;
}
.cg .pad-wm {
    padding: 1.5em 2.35em;
}
.cg .pad-wl {
    padding: 2em 3.25em;
}
.cg .pad-wx {
    padding: 2.5em 3.75em;
}
.cg .pad-wh {
    padding: 3em 4.5em;
}
.cg .pad-bs {
    padding-bottom: 6em;
}
.cg .pad-bm {
    padding-bottom: 6em;
}
.cg .pad-bl {
    padding-bottom: 8em;
}
.cg .pad-bx {
    padding-bottom: 10em;
}
/* stack */
.cg .stack-z {
    padding-left: 0 !important;
    padding-right: 0 !important;
}
.cg .stack-a {
    padding-left: 0.75em;
    padding-right: 0.75em;
}
.cg .stack-t {
    padding-left: 1em;
    padding-right: 1em;
}
.cg .stack-s {
    padding-left: 1.6em;
    padding-right: 1.6em;
}
.cg .stack-m {
    padding-left: 2em;
    padding-right: 2em;
}
.cg .stack-l {
    padding-left: 2.5em;
    padding-right: 2.5em;
}
.cg .stack-x {
    padding-left: 3em;
    padding-right: 3em;
}
.cg .stack-h {
    padding-left: 3.5em;
    padding-right: 3.5em;
}
/* widths */
.cg .width-xs {
    max-width: 40em;
}
.cg .width-sm {
    max-width: 60em;
}
.cg .width-md {
    max-width: 80em;
}
.cg .width-lg {
    max-width: 100em;
}
.cg .width-xl {
    max-width: 120em;
}
.cg .wide-t {
    width: 30em;
}
.cg .wide-a {
    width: 50em;
}
.cg .wide-s {
    width: 70em;
}
.cg .wide-m {
    width: 90em;
}
.cg .wide-l {
    width: 110em;
}
.cg .wide-x {
    width: 130em;
}
.cg .width-a {
    width: 3em;
}
.cg .width-t {
    width: 5em;
}
.cg .width-s {
    width: 10em;
}
.cg .width-m {
    width: 15em;
}
.cg .width-l {
    width: 20em;
}
.cg .width-x {
    width: 25em;
}
/* SPACING */
.cg .vs0 {
    margin-top: 0.25em !important;
}
.cg .vs1 {
    margin-top: 0.5em !important;
}
.cg .vs2 {
    margin-top: 0.75em !important;
}
.cg .vs3 {
    margin-top: 1em !important;
}
.cg .vs4 {
    margin-top: 1.5em !important;
}
.cg .vs5 {
    margin-top: 2em !important;
}
.cg .vs6 {
    margin-top: 2.5em !important;
}
.cg .vs7 {
    margin-top: 3em !important;
}
.cg .vs8 {
    margin-top: 3.5em !important;
}
.cg .in0 {
    margin-left: 0.25em !important;
}
.cg .in1 {
    margin-left: 0.5em !important;
}
.cg .in2 {
    margin-left: 0.75em !important;
}
.cg .in3 {
    margin-left: 1em !important;
}
.cg .in4 {
    margin-left: 1.5em !important;
}
.cg .in5 {
    margin-left: 2em !important;
}
.cg .in6 {
    margin-left: 2.5em !important;
}
.cg .in7 {
    margin-left: 3em !important;
}
.cg .in8 {
    margin-left: 3.5em !important;
}
.cg .nw0 {
    margin-bottom: 0.25em !important;
}
.cg .nw1 {
    margin-bottom: 0.5em !important;
}
.cg .nw2 {
    margin-bottom: 0.75em !important;
}
.cg .nw3 {
    margin-bottom: 1em !important;
}
.cg .nw4 {
    margin-bottom: 1.5em !important;
}
.cg .nw5 {
    margin-bottom: 2em !important;
}
.cg .nw6 {
    margin-bottom: 2.5em !important;
}
.cg .nw7 {
    margin-bottom: 3em !important;
}
.cg .nw8 {
    margin-bottom: 3.5em !important;
}
.cg .gp0 {
    gap: 0.25em !important;
}
.cg .gp1 {
    gap: 0.5em !important;
}
.cg .gp2 {
    gap: 0.75em !important;
}
.cg .gp3 {
    gap: 1em !important;
}
.cg .gp4 {
    gap: 1.5em !important;
}
.cg .gp5 {
    gap: 2em !important;
}
.cg .gp6 {
    gap: 2.5em !important;
}
.cg .gp7 {
    gap: 3em !important;
}
.cg .gp8 {
    gap: 3.5em !important;
}
.cg .hs0 {
    margin-right: 0.25em !important;
}
.cg .hs1 {
    margin-right: 0.5em !important;
}
.cg .hs2 {
    margin-right: 0.75em !important;
}
.cg .hs3 {
    margin-right: 1em !important;
}
.cg .hs4 {
    margin-right: 1.5em !important;
}
.cg .hs5 {
    margin-right: 2em !important;
}
.cg .hs6 {
    margin-right: 2.5em !important;
}
.cg .hs7 {
    margin-right: 3em !important;
}
.cg .hs8 {
    margin-right: 3.5em !important;
}
.cg .ls0,
.cg ul.ls0 > li {
    line-height: 1em;
}
.cg .ls1,
.cg ul.ls1 > li {
    line-height: 1.25em;
}
.cg .ls2,
.cg ul.ls2 > li {
    line-height: 1.5em;
}
.cg .ls3,
.cg ul.ls3 > li {
    line-height: 1.75em;
}
.cg .ls4,
.cg ul.ls4 > li {
    line-height: 2em;
}
/* TEXT */
.cg .text-l {
    text-align: left !important;
}
.cg .text-c {
    text-align: center !important;
}
.cg .text-r {
    text-align: right !important;
}
.cg .text-j {
    text-align: justify !important;
}
.cg .text-v {
    transform: rotate(-35deg);
}
.cg .text-w {
    word-break: break-word;
    white-space: normal;
}
.cg .dots {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
.cg .nowrap {
    white-space: nowrap;
}
.cg .wrap {
    white-space: -moz-pre-wrap !important;
    white-space: -pre-wrap;
    white-space: -o-pre-wrap;
    white-space: pre-wrap;
    word-wrap: break-word;
    white-space: -webkit-pre-wrap;
    white-space: normal;
}
.cg .exp {
    width: 100%;
    height: 100%;
}
.cg .exp-w {
    width: 100%;
}
.cg .exp-h {
    height: 100%;
}
.cg .debug-all * {
    border: solid 1px red !important;
}
.cg .debug {
    border: solid 1px red !important;
}
.cg .debug1 {
    border: solid 1px blue !important;
}
.cg .debug2 {
    border: solid 1px green !important;
}
.cg .debug3 {
    border: solid 1px orange !important;
}
.cg .debug4 {
    border: solid 1px purple !important;
}
.cg .link {
    color: inherit;
    text-decoration: none;
}
.cg .font-xs {
    font-size: 0.9em;
}
.cg .font-sm {
    font-size: 1.1em;
}
.cg .font-md {
    font-size: 1.3em;
}
.cg .font-lg {
    font-size: 1.5em;
}
.cg .font-xl {
    font-size: 1.7em;
}
.cg .cursor {
    cursor: pointer;
}
.cg .no-select {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}
.cg .semi-bold {
    font-weight: 600;
}
.cg .bold {
    font-weight: 700;
}
.cg .italic {
    font-style: italic;
}
:root {
    --bg-color: #faf3e0;
    --text-color: #1c1c1c;
    --accent-color: #e1a545;
    --card-bg: #000000;
    --secondary-text: #555555;
    --button-hover: #d18f3c;
}

.cg .app {
    position: relative;
}

.cg .table .th {
    text-align: center;
    background-color: #ddd;
}
.cg .navbar {
    position: sticky;
    top: 0;
    left: 0;
    right: 8px;
    min-height: 3.35em;
    background-color: var(--bg-color);
}
.cg .navbar .icon {
    color: var(--text-color);
}

.cg .phrase-cell {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    white-space: normal;
    word-break: break-word;
    overflow-wrap: break-word;
    max-height: 100%;
    padding: 4px;
    gap: 4px;
}

.cg .phrase-chip {
    background: rgba(0, 0, 0, 0.05);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 12px;
    line-height: 1.2;
    display: inline-block;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.cg .phrase-positive {
    background-color: #bfecffdd;
}
.cg .phrase-negative {
    background-color: #ffd2a0bb;
}

.cg .dataGrid .MuiDataGrid-root {
    font-size: 12px;
}
.cg .dataGrid .MuiDataGrid-row {
    min-height: 30px !important;
    margin: 0px;
}
.cg .dataGrid .MuiDataGrid-cell {
    padding: 0px;
    border-right: 1px solid #aaa;
    border-bottom: none;
}
.cg .dataGrid .MuiDataGrid-columnHeaders {
    font-size: 12px;
}
.cg .dataGrid .MuiDataGrid-columnHeaderTitle {
    font-weight: 600;
}
.cg .dataGrid .MuiDataGrid-row:nth-of-type(odd) {
    background-color: #f5f5f5;
}
.cg .dataGrid .MuiDataGrid-row:nth-of-type(even) {
    background-color: #ffffff;
}

.cg .MuiDataGrid-footerContainer {
    display: none;
}
