.thumbnail-row {
    display: flex;
    justify-content: space-between;
  }

.thumbnail {
  width: 100px; /* You can set your desired width */
  height: auto;
  margin-right: 10px; /* Space between thumbnails */
}

/* This ensures the last thumbnail does not have a margin to the right */
.thumbnail:last-child {
  margin-right: 0;
}

  /* Styles for the buy button */
.buy-button {
  display: inline-block;
  padding: 10px 20px;
  margin: 20px;
  background-color: #007bff; /* Bootstrap primary color */
  color: white;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.buy-button:hover, .buy-button:focus {
  background-color: #0056b3; /* Darken the button a bit when hovering or focusing */
  text-decoration: none; /* Ensures the text doesn't get underlined on hover */
  color: white;
}