#results-page #chart-container{
  margin: 0 auto;
  width: 80%;
  position:relative;
}

.run-summary {
  background-color: rgba(0, 255, 0, 0.2);
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 0 5px rgba(150, 255, 150, 0.5);
  /* animation: glow 2s infinite alternate; */
  width:50%;
  margin:0 auto;
}
@keyframes glow {
  from {
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.5);
  }
  to {
    box-shadow: 0 0 25px rgba(0, 255, 0, 0.8);
  }
}
.run-summary table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-family: Arial, sans-serif;
}
.run-summary thead tr {
  background-color: rgba(0, 255, 0, 0.3);
}
.run-summary th {
  padding: 12px;
  text-align: left;
  border-bottom: 2px solid rgba(0, 255, 0, 0.5);
  font-weight: bold;
  color: white;
}
.run-summary th:not(:first-child) {
  text-align: center;
}
.run-summary td {
  padding: 10px;
  border-bottom: 1px solid rgba(0, 255, 0, 0.3);
  color: white;
}
.run-summary td:not(:first-child) {
  text-align: center;
}
.run-summary tr:nth-child(even) {
  background-color: rgba(0, 255, 0, 0.1);
}
.run-summary tr:nth-child(odd) {
  background-color: rgba(0, 255, 0, 0.05);
}
.run-summary tr {
  transition: background-color 0.3s;
}
.run-summary tr:hover {
  background-color: rgba(0, 255, 0, 0.2);
}

.run-summary th {
  cursor: pointer;
  position: relative;
}

.run-summary th::after {
  content: '\25B2';
  position: absolute;
  right: 8px;
  opacity: 0.5;
}

.run-summary th.sort-asc::after {
  content: '\25B2';
  opacity: 1;
}

.run-summary th.sort-desc::after {
  content: '\25BC';
  opacity: 1;
}
