#dialog-call-statistics {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.statistics-container {
  color: black;
}
.column-container-item {
  display: flex;
  height: 100%;
  flex-direction: column;
  background-color: transparent;
  color: white;
  padding: 0.5rem;
  gap: 0.5rem;
}
.statistic-title {
  text-align: left;
}

.column-container.show {
  display: grid;
  grid-template-columns: 2fr 4fr;
  animation-duration: 0.5s;
  animation-name: slideIn;
  border: 1px solid #8c8a8c;
  max-width: 45rem;
}
.statistic-select {
  width: 60%;
  font-size: 0.5rem;
  background-color: transparent;
  color: white;
  border: 1px solid white;
  border-radius: 1rem;
  cursor: pointer;
  outline: none;
  word-wrap: nowrap;
}
.statistic-select option {
  background: transparent !important;
  padding: 0.5rem 0;
  cursor: pointer;
  color: black;
}
.statistic-option:hover {
  color: #fbb03a;
  cursor: pointer;
}
.statistic-table {
  height: 100%;
}
.statistic-table-download,
.statistic-table-upload {
  overflow: auto;
  width: 100%;
  height: 50%;
  background-color: transparent;
  color: white;
}
.statistic-table-upload {
  margin-top: 0.5rem;
  border-top: 1px solid transparent; /* Set the right border */
  border-image: linear-gradient(
    to right,
    rgba(231, 231, 231, 0.2),
    rgba(231, 231, 231, 1),
    rgba(231, 231, 231, 0.2)
  );
  border-image-slice: 1;
}

.download-table,
.upload-table {
  width: 100%;
  /* border: 1px solid white; */
  border-radius: 1rem;
  font-size: 0.8rem;
}
.download-row,
.upload-row {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
}
.download-cell,
.upload-cell {
  border: 1px solid white;
}
.download-row:first-child .download-cell:first-child,
.upload-row:first-child .upload-cell:first-child {
  border: none;
}
.download-row:first-child .download-cell:last-child,
.upload-row:first-child .upload-cell:last-child {
  border: none;
}
.download-row:first-child .download-cell:nth-child(2),
.upload-row:first-child .upload-cell:nth-child(2) {
  border: none;
}
.download-row:nth-child(2) .download-cell:nth-child(1),
.upload-row:nth-child(2) .upload-cell:nth-child(1) {
  border-radius: 0 0.4rem 0 0;
}
.download-row:nth-child(2) .download-cell:nth-child(3),
.upload-row:nth-child(2) .upload-cell:nth-child(3) {
  border-radius: 0.4rem 0 0 0;
}
.download-row:last-child .download-cell:nth-child(1),
.upload-row:last-child .upload-cell:nth-child(1) {
  border-radius: 0 0 0.4rem 0;
}
.download-row:last-child .download-cell:nth-child(3),
.upload-row:last-child .upload-cell:nth-child(3) {
  border-radius: 0 0 0 0.4rem;
}
#chart-container {
  width: 100%;
  height: 100%;
  max-height: 16rem;
}
.grid-line {
  stroke: black;
  opacity: 0.6;
  stroke-width: 1;
}
.white-line {
  fill: none;
  stroke: white;
  stroke-width: 2;
}
.outgoing-chart {
  border-top: 1px solid transparent; /* Set the right border */
  border-image: linear-gradient(
    to right,
    rgba(231, 231, 231, 0.2),
    rgba(231, 231, 231, 1),
    rgba(231, 231, 231, 0.2)
  );
  border-image-slice: 1;
}
@media screen and (max-width: 64em) {
  .download-table,
  .upload-table {
    font-size: 0.5rem;
  }
}
@media screen and (max-width: 37.5em) {
  .column-container.show {
    grid-template-columns: 1fr 6fr;
    top: 0;
    height: 90%;
    backdrop-filter: blur(30px);
  }
  .download-table,
  .upload-table {
    font-size: 0.7rem;
  }
  .statistic-table-upload {
    padding-top: 0;
  }
}
@media screen and (max-height: 40em) {
  .statistic-table {
    height: 95%;
  }
  .statistic-title{
    font-size: .8rem;
  }
  .download-table,
.upload-table {
  font-size: 0.5rem;
}
}