

.summary-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.card {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 20px;
  flex: 1 1 calc(25% - 20px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.card h2 {
  margin: 0;
  margin-bottom: 10px;
  font-size: 18px;
  color: #555;
}

.card p {
  margin: 0;
  font-size: 24px;
  font-weight: bold;
  color: #333;
}

.card p:last-child {
  font-size: 14px;
  font-weight: normal;
  color: #777;
}

.charts {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.chart {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 20px;
  flex: 1 1 calc(50% - 20px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.highcharts-figure,
.highcharts-data-table table {
    min-width: 310px;
    max-width: 800px;
    margin: 0em auto;
}

#container {
    height: 400px;
}

.highcharts-data-table table {
    font-family: Verdana, sans-serif;
    border-collapse: collapse;
    border: 1px solid #ebebeb;
    margin: 10px auto;
    text-align: center;
    width: 100%;
    max-width: 500px;
}

.highcharts-data-table caption {
    padding: 1em 0;
    font-size: 1.2em;
    color: #555;
}

.highcharts-data-table th {
    font-weight: 600;
    padding: 0.5em;
}

.highcharts-data-table td,
.highcharts-data-table th,
.highcharts-data-table caption {
    padding: 0.5em;
}

.highcharts-data-table thead tr,
.highcharts-data-table tr:nth-child(even) {
    background: #f8f8f8;
}

.highcharts-data-table tr:hover {
    background: #f1f7ff;
}

