/* Centers the entire view (grid + buttons + anything else) */
.page-center {
    display: flex;
    justify-content: center;   /* centers the whole row */
    align-items: flex-start;   /* aligns tops together */
    gap: 20px;                 /* space between buttons and grid */
}

/* Buttons on the left, grid on the right */
.content-row {
  width: 100%;
  max-width: none;
}


/* Let the grid take all remaining space */
.grid-wrapper {
  flex: 1;
  min-width: 500px;   /* adjust until it stays on the same line */
  max-width: 700px;
}

/* Centers the whole layout */
.page-center,
.content-row {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

/* Column styling */
.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(200px, 1fr));
  gap: 20px;
  align-items: start;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}


/* Remove bullets + left-align items */
.col ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
  text-align: left;
}

.col h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
  font-weight: bold;
  text-align: left;
}

.col li {
  margin-bottom: 22px;
}

/* Column colors */
.grid .col:first-of-type {
  background-color: #f0f8ff;
  padding: 20px;
  border-radius: 6px;
}

.grid .col:nth-of-type(2) {
  background-color: #fff4e6;
  padding: 20px;
  border-radius: 6px;
}

/* Center the buttons */
.buttons a.btn {
  white-space: normal;
  width: 100%;
  display: block;
}

.content-row {
  max-width: 1100px;
  margin: 0 auto;
}

.buttons-column {
  background: rgba(0, 255, 0, 0.2);
}

.grid-wrapper {
  background: rgba(0, 0, 255, 0.2);
}

.grid-wrapper {
    background-color: transparent !important;
}