/* styles.css */
#mainContainer {
  max-width: 1200px; /* Adjust as needed */
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

#checkboxContainer {
  margin-bottom: 10px;
  text-align: left;
  width: 100%;
}

ul li label {
  padding-left: 0.5rem;
  list-style: none;
  font-family: "Poppins", Sans-serif;
  max-height: 450px;
  vertical-align: top;
  overflow-y: scroll;
}

section {
  width: 1489px;
  column-count: 5;
  /* transform: translateX(0px) translateY(460px); <--- the culpitre */
}

.hide-solution {
  display: none;
}

body {
  background-color: #f0ffff;
}

h1 {
  font-family: "Poppins", Sans-serif;
}

.montserrat-<uniquifier > {
  font-family: "Poppins", Sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

.button-row-container {
  left: 20px; /* Start from 20px from the left */
  bottom: 20px; /* Start from 20px from the bottom */
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* Align buttons to the left */
}

.button-row {
  display: flex;
  flex-direction: row;
  gap: 10px; /* Space between buttons horizontally */
  margin-bottom: 10px; /* Space between rows */
}

.button-row:last-child {
  margin-bottom: 0; /* Remove bottom margin from the last row */
}

button {
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  font-family: "Poppins", Sans-serif;
}

/* Container for the SVG and info block */
#gridContainer {
  display: flex;
  flex-direction: row;
  align-items: flex-start; /* top-align items */
  gap: 10px; /* 10px space between the SVG and the info block */
  /* Optionally, you can center it horizontally */
  margin: 0 auto;
  width: 100%;
}

#gridContainer svg {
  margin-left: auto;
}

/* Info block positioned exactly 10px to the right of the grid */
#infoBlock {
  width: 220px;
  height: 444.5px; /* Match the SVG's height */
  padding: 10px;
  box-sizing: border-box;

  background-color: white;
  color: black;
  border: 2px solid black; /* adjust border as desired */
  font-family: "Poppins", Sans-serif;
  margin-right: auto;
}

#infoBlock hr {
  margin: 5px 0 10px;
}

/* Each row is displayed as a table row */
.infoBlockRow {
  display: table-row;
}

/* Each piece (label or value) is displayed as a table cell */
.infoLabel,
.infoValue {
  display: table-cell;
  vertical-align: middle;
  padding: 4px;
  font-size: 14px;
  /* Any other text styling you want */
}

/* Label goes on the left */
.infoLabel {
  text-align: left;
  font-weight: bold;
}

/* Value goes on the right */
.infoValue {
  text-align: right;
  font-weight: normal;
}
