.md-content {
    padding-left: 2.5%;
    padding-right: 2.5%;
}

[data-md-color-scheme="bigchemistry"] {
  --md-primary-fg-color:        #004854;
  --md-primary-fg-color--light: #004854;
  --md-primary-fg-color--dark:  #00c9d9;
  --md-primary-bg-color:               hsla(0, 0%, 100%, 1);
  --md-primary-bg-color--light:        hsla(0, 0%, 100%, 0.7);

  // Accent color shades
  --md-accent-fg-color:                hsla(#{hex2hsl(#004854)}, 1);
  --md-accent-fg-color--transparent:   hsla(#{hex2hsl(#004854)}, 0.1);
  --md-accent-bg-color:                hsla(0, 0%, 100%, 1);
  --md-accent-bg-color--light:         hsla(0, 0%, 100%, 0.7);
}



.md-main__inner.md-grid {
  max-width: 95%; /* or 100%, if you want to stretch to full-width */
}

.object-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}

.object-panel:hover {
  transform: scale(1.02);
}

.panel-image {
  width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: cover;
  border-radius: 6px;
}

.panel-title {
  margin: 0.5rem 0 0.25rem;
  font-size: 1.2rem;
  text-align: center;
}

.panel-description {
  font-size: 0.95rem;
  text-align: center;
}

.panel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
}

