.md-footer {
  display: none; /* Hide the footer entirely */
}

/* Target all images in tables */
table img {
  height: 300px !important; /* Force height to 200px */
  width: 235px; /* Maintain aspect ratio */
  object-fit: cover; /* Crop the image to fit the height */
  display: block; /* Ensure images behave as block elements */
  margin: 0 auto; /* Center the images horizontally */
  border-radius: 8px; /* Optional: Rounded corners */
}

/* Ensure table cells don’t restrict images */
table th, table td {
  text-align: center; /* Center content horizontally */
  vertical-align: middle; /* Align content vertically */
  overflow: hidden; /* Hide any overflow from cropped images */
  height: auto; /* Allow the cell height to adjust to the image */
}
