/* Target menu bar using custom class */
.smaller-menu {
  font-size: 6px; /* Adjust font size */
  padding: 5px 5px; /* Reduce padding inside menu items */
  height: auto; /* Let the menu height adjust based on content */
  text-align: center;
  float: center;
}

/* Center the image */
.wipe-in-image .image-wrapper {
  text-align: center;
  overflow: hidden; /* helps with the wipe effect */
}

/* Image animation setup */
.wipe-in-image .image-wrapper img {
  display: inline-block;
  animation: wipeIn 1s ease-out forwards;
  transform: translateX(-100%);
  opacity: 0;
  max-width: 100%;       /* Prevents it from overflowing container */
  height: auto;            /* Maintains aspect ratio */
}

/* Wipe-in keyframes */
@keyframes wipeIn {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
