button {
  background-color: #000000;
  color: #ffffff;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

button:hover {
  background-color: #043673;
  transform: scale(1.5);
}

.header-container {
  height: 75px;
  width: 100%;
  background-color: var(--color-accent);
  font-size: 10px;
  border-radius: 3px;
}

.header-container:hover {
  font-size: 14px;
}

.header-container h1 {
  font-size: 14px;
  font-weight: 800;
  padding: 0px;
  margin: 0px;
}

.header-container p {
  font-size: 10px; 
  color: var(--color-light);
  font-weight: 600;
}

.tab-button-container {
  display: flex;
  background-color: #000000;
  border: 5px solid #000000;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.tab-button {
  background-color: #6D6E71;
  border: 5px solid #000000;
  border-top-left-radius: 15px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s, transform 0.3s;
  box-shadow: 0 2px 4px rgba(0, 143, 145, 0.2);
}

.tab-button:hover {
  background-color: #FDB515;
  transform: scale(1.15);
}

.tab-button.active {
  background-color: #EF3A47;
}

.tab-content-container {
  display: flex;
  justify-content: "space-evenly"; 
  flex-direction: "row";
  height: 100%;
  width: 100%;
}

.tab-pane {
  display: none;
  width: 100%;
  height: 100%;
}

.tab-pane.active {
  display: flex;
  height: 100%;
}

.table-container {
  display: flex;
  flex-direction: column;
  width: 30%;
  height: 90%;
  background-color: #ffffff;
  border: 3px solid #000000;
  border-bottom-left-radius: 15px;
  justify-content: space-evenly;
  align-items: center;
}

.highscores-list {
  width: 95%;
  border-collapse: "collapse";
  border-radius: 2px;
  height: 95%;
  text-align: center;
  font-size: 0.6rem;
}

.highscores-header {
  font-weight: 800;
  font-size: 1.2rem;
  text-align: center;
  background-color: #f2f2f2;
  border: 1px solid #dddddd;
}

.charts-container {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  background-color: #ffffff;
  width: 70%;
  height: 90%;
  border: 3px solid #000000;
  border-bottom-right-radius: 15px;
}

.scatter-container {
  display: flex; 
  width: 70%;
  height: 100%;
  margin-left: 20px; 
}

.histogram-container {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 30%;
  height: 100%;
  margin-right: 20px; 
}

.histogram-divider {
  height: 50%;
}

.scatter-canvas {
  display: block;
  aspect-ratio: auto 0.5;
  background-color: #ffffff;
  pointer-events: auto
}

.histogram-canvas {
  display: block;
  aspect-ratio: auto 2;
  background-color: #ffffff;
  pointer-events: auto
}

.toolbar {
  display: flex;
  flex-direction: row;
  align-items: top;
  justify-content: space-between;
  margin-top: 5px; 
  margin-bottom: 10px; 
  height: 140px;
  width: 90%;
}

.toolbar-vpanel {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  height: 100%;
}

.report-container {
  display: flex;
  flex-direction: column;
  justify-content: space-around; 
  align-self: center;
  width: calc(100vw - 100px);
  height: 800px;
  overflow-y: clip;
}

.toolbar-button {
  width: 10rem;
  font-size: 0.8rem;
}

/* Adjust report table for smaller screens */
.report-container table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

.report-container th, .report-container td {
  text-align: center;
  border: 1px solid #ddd;
}

@media (max-width: 768px) {
  .report-container table {
    font-size: 0.9rem;
  }

  /* #scatterParameters, #histogramParameters {
    margin-top: 1rem;
  } */
}

#resultsContent {
  margin-top: 0px
}

.parameter-header {
  font-size: 12px;
}
