/* Center the loader */
.mclcares-loader {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh; /* Full page height */
}

/* Loader bounce animation */
.mclcares-loader img {
  width: 12rem; /* Adjust as needed */
  animation: bounce 1.5s infinite;
}

/* Bouncing keyframes */
@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-30px); /* Adjust the height of the bounce */
  }
}
