@import '../../chartStyle.scss';

.chart-card {
  background: rgb(255, 255, 255);
  padding: 1rem;
  height: 100%;

  .chart-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: $title-color;
    line-height: 1.5;
    padding: 0.4rem;
  }

  .chart-body {
    position: relative;
    height: calc(100% - 2.9rem);

    .echart {
      width: 100%;
      height: 100%;
      font-size: 1.2rem;
    }
  }
}

::-webkit-scrollbar {
  width: 0;
  height: 0.6rem;
}

::-webkit-scrollbar-track {
  background-color: rgb(214, 212, 212);
  -webkit-border-radius: 0.2rem;
  -moz-border-radius: 0.2rem;
  border-radius: 0.2rem;
}

::-webkit-scrollbar-thumb {
  background-color: #beb9b9;
  -webkit-border-radius: 0.2rem;
  -moz-border-radius: 0.2rem;
  border-radius: 0.2rem;
}
