body {margin:0;padding:0}

.dash-spreadsheet-container .dash-spreadsheet-inner table {
        --hover: rgba(134, 142, 150, 0.2) !important;
}

/* customized scrollbar */
::-webkit-scrollbar {
    width: 20px;
    height: 20px;
}

::-webkit-scrollbar-track {
    background-color: transparent;
}

::-webkit-scrollbar-thumb {
    background-color: #999999;
    border-radius: 20px;
    border: 6px solid transparent;
    background-clip: content-box;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #7c7c7c;
}

.content {
  display: flex;
  pointer-events: none;
  transition: all 0.4s;
}

.card-hghlght {
  pointer-events: auto;
  transform: scale(1);
  transition: all 0.4s;
}

.card-hghlght:hover {
  opacity: 1;
  transform: scale(1.02);
}

.content:hover .card-hghlght:not(:hover) {
  opacity: 0.5;
  transform: scale(0.9);
}

/*
.mantine-1j4nb2s[data-active], .mantine-1j4nb2s[data-active]:hover {
    background-image: linear-gradient(45deg, rgb(25, 113, 194) 0%, rgb(9, 146, 104) 100%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mantine-t4mw9m[data-active], .mantine-t4mw9m[data-active]:hover {
    background-image: linear-gradient(45deg, rgb(25, 113, 194) 0%, rgb(9, 146, 104) 100%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
*/

._dash-loading {
  margin: auto;
  color: transparent;
  width: 0;
  height: 0;
  text-align: center;
}

._dash-loading::after {
  content: '';
  display: inline-block;
  width: 2rem;
  height: 2rem;
  color: #228be6;
  vertical-align: text-bottom;
  border: 0.25em solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  -webkit-animation: spinner-border 0.75s linear infinite;
  animation: spinner-border 0.75s linear infinite;
  margin-top: 2rem;
}

.js-plotly-plot .plotly .cursor-crosshair {
    cursor: default !important;
}