.thumb {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
}

img {
  box-shadow: 4px 4px 8px rgba(0,0,0,0.5);
  transition: transform 0.2s ease-in-out;
  display: block;
  margin: auto;
}

img:hover {
  transform: scale(1.01);
}

img.no-shadow {
  box-shadow: none !important;
}


.thumb:hover {
  transform: scale(1.1);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(75px, 1fr));
  gap: 1em;
}

.info {
  background-color: #d6e9f9;
  border-left: 5px solid #428bca;
  padding: 10px;
  border-radius: 5px;
}

.error {
  background-color: #ffc5c5;
  border-left: 5px solid #ff2222;
  padding: 10px;
  border-radius: 5px;
}
