.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 20px;
}

.logo-item {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f2f2f2;
  border-radius: 5px;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}

.logo-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Hide all logos after the third row */

.logo-grid > .logo-item:nth-child(n + 10) {
  display: none;
}

/* Style the "View More" button */

#view-more-button-container {
  text-align: center;
  margin-top: 20px;
}

#view-more-button {
  background-color: #f2f2f2;
  color: #333;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  cursor: pointer;
}

