.centerContent {
  padding: 14.5px;
  overflow-y: auto;
  height: calc(100% - 70px);
  padding-bottom: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 60px;

  .TopPart {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;

    .barChart {
      width: 800px;
    }

    .pieChart {
      width: 400px;
    }
  }
  .cardContainer {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
  }
}
.filterGraph {
  background-color: #e7eaff;
  border-radius: 16px;
  padding: 20px;
  outline: rgb(16, 33, 155) dashed 1px;
  width: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  gap: 24px;
}
.filterGraph form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.filterGraph form .inputFild {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.filterGraph form .inputFild input {
  border: none;
  outline: none;
  height: 48px;
  border-radius: 10px;
  padding: 0.5rem;
  box-shadow: 0 0 1px 0px #1328bd;
}
.filterGraph form button {
  border: none;
  outline: none;
  width: 100%;
  height: 48px;
  border-radius: 10px;
  padding: 0.5rem;
  box-shadow: 0 0 1px 0px #1328bd;
  background: linear-gradient(126deg, #1631ef 0%, #0d1a73 100%);
  color: #fff;
  font-family: "switzerBold";
  font-size: 18px;
  letter-spacing: 0.5px;
  margin-top: 22px;
  cursor: pointer;
  transition: 0.3s;

  &:hover {
    opacity: 0.8;
  }
}

.chartMainContainer {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: stretch;
  align-items: stretch;
}
.chartMainContainer .chartDiv {
  width: 750px;
  background-color: rgb(231, 234, 255);
  border-radius: 16px;
  padding: 22px;
  box-shadow: rgb(198, 205, 255) 0px 0px 2px 1px;
  outline: rgb(16, 33, 155) dashed 1px;
}

/* Media Query */
@media screen and (max-width: 600px) {
  .centerContent {
    gap: 30px;
    .cardContainer {
      justify-content: center;
      align-items: center;
      gap: 20px;
    }
  }
  .filterGraph {
    width: 100%;
  }
  .filterGraph h1 {
    font-size: 16px;
  }
  .filterGraph label {
    font-size: 14px;
  }
  .filterGraph form button {
    font-size: 16px;
    margin-top: 16px;
  }
  .chartMainContainer .chartDiv {
    width: 100%;
  }
}
