/* Style the grid container */
.grid {
  display: grid;
  grid-template-columns: 1fr 2fr; /* 1/3 and 2/3 layout */
  gap: 1rem; /* Space between columns */
  align-items: start; /* Align to the top */
}

/* Ensure images scale properly */
.g-col-4 img,
.g-col-8 img {
  max-width: 100%;
  height: auto;
}

/* Style captions */
.g-col-4 p,
.g-col-8 p {
  text-align: center;
  font-size: 0.9em;
  margin-top: 0.5rem;
}

.example {
  border-left: 2px solid #e0e0e0;
  padding: 0.75em 1em;
  margin: 1.5em 0;
  background-color: #f9f9f9;
  font-size: 0.95em;
}

.mytableblock {
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  padding: 1rem;
  margin-bottom: 1rem;
  background-color: #ffffff;
  font-size: 0.9em; /* Shrink table text slightly */
  width: 95%; /* Optional shrink */
  margin-left: auto;
  margin-right: auto;
}

