.text-desc {
  font-size: 24px;
  font-weight: 400;
  color: #4e6a63;
  line-height: 1.5;
  text-align: justify;
  margin: 20px auto;
}

.table-container {
  overflow-x: auto;
  margin: 30px auto 20px auto;
}

table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 20px;
}

th,
td {
  padding: 10px 30px;
  font-size: 20px;
  font-weight: 500;
  text-align: center;
}

th {
  background-color: #73837f;
  color: white;
  padding: 30px;
  text-align: center;
}
td {
  color: #3a4944;
}

tbody tr {
  background-color: #ffffff;
  margin-bottom: 2px;
}
tbody tr:nth-child(odd) {
  background-color: rgb(255, 255, 255, 0.5);
}

.section {
  margin-bottom: 40px;
}

.chart-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 45px;
  margin-top: 30px;
  color: #31544b;
}
.charts-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.chart-container {
  background: black;
  padding: 20px;
  flex: 1 1 45%;
  min-width: 300px;
}

canvas {
  width: 100% !important;
  height: auto !important;
}

.table-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}
.table-caption h3 {
  color: #31544b;
  font-size: 24px;
  text-align: center;
  margin: 2px;
}
.line-caption {
  height: 4px;
  display: flex;
  align-items: center;
  flex-grow: 1;
  background-color: rgba(252, 180, 74, 0.4);
}

.table-caption p {
  font-size: 16px;
  font-weight: 300;
  text-align: center;
  margin: 0;
  color: #5e6863;
}

@media (max-width: 1024px) {
  .text-desc {
    font-size: 22px;
    line-height: 1.6;
  }

  .chart-title {
    font-size: 18px;
    text-align: center;
  }

  .section-title {
    font-size: 20px;
    text-align: center;
  }

  th,
  td {
    font-size: 18px;
    padding: 10px 15px;
  }

  .table-caption h3 {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .charts-grid {
    flex-direction: column;
  }

  .chart-container {
    flex: 1 1 100%;
  }

  .table-caption {
    flex-direction: column;
    align-items: center;
  }

  .table-caption h3 {
    text-align: center;
    font-size: 18px;
  }

  .text-desc {
    font-size: 20px;
    margin: 10px;
  }
}

@media (max-width: 480px) {
  .text-desc {
    font-size: 18px;
    padding: 0 10px;
  }

  .section-title {
    font-size: 18px;
  }

  .chart-title {
    font-size: 16px;
  }

  th,
  td {
    font-size: 16px;
    padding: 8px;
  }

  .table-caption h3 {
    font-size: 16px;
    line-height: 1.4;
  }
}

.percent-none {
  display: none;
}
body[lang="en"] {
  #delete-for-english {
    display: none !important;
  }
  #delete-for-arabic {
    display: inline !important;
  }
  .percent-none {
    display: inline;
  }
  .contain-numbers-and-chart {
    flex-direction: row-reverse;
  }

  .line-and-numbers .number {
    flex-direction: row-reverse;
  }

  .chart {
    flex-direction: row-reverse;
  }
}
#delete-for-arabic {
  display: none !important;
}
#delete-for-english {
  display: inline !important;
}

#chart-container-no-padding{
  padding: 0px !important;
  background-color: blanchedalmond;
}