body, html {
   
}

/* Initial site loading animation */
.wasm-site-loader {
    margin: 100px auto;
    width: 40px;
    height: 40px;
    position: relative;
}

.cube1, .cube2 {
    background-color: #333;
    width: 15px;
    height: 15px;
    position: absolute;
    top: 0;
    left: 0;

    -webkit-animation: sk-cubemove 1.8s infinite ease-in-out;
    animation: sk-cubemove 1.8s infinite ease-in-out;
}

.cube2 {
    -webkit-animation-delay: -0.9s;
    animation-delay: -0.9s;
}

@-webkit-keyframes sk-cubemove {
    25% { -webkit-transform: translateX(42px) rotate(-90deg) scale(0.5) }
    50% { -webkit-transform: translateX(42px) translateY(42px) rotate(-180deg) }
    75% { -webkit-transform: translateX(0px) translateY(42px) rotate(-270deg) scale(0.5) }
    100% { -webkit-transform: rotate(-360deg) }
}

@keyframes sk-cubemove {
    25% {
        transform: translateX(42px) rotate(-90deg) scale(0.5);
        -webkit-transform: translateX(42px) rotate(-90deg) scale(0.5);
    } 50% {
          transform: translateX(42px) translateY(42px) rotate(-179deg);
          -webkit-transform: translateX(42px) translateY(42px) rotate(-179deg);
      } 50.1% {
            transform: translateX(42px) translateY(42px) rotate(-180deg);
            -webkit-transform: translateX(42px) translateY(42px) rotate(-180deg);
        } 75% {
              transform: translateX(0px) translateY(42px) rotate(-270deg) scale(0.5);
              -webkit-transform: translateX(0px) translateY(42px) rotate(-270deg) scale(0.5);
          } 100% {
                transform: rotate(-360deg);
                -webkit-transform: rotate(-360deg);
            }
}

/* Container for the large image to manage scaling */
.image-container {
    width: 100%;
    overflow: hidden; /* Hide any part of the image that overflows */
    position: relative;
}

/* Large image that scales according to screen size */
.responsive-image {
    width: 100%; /* Make image width 100% of its container */
    height: auto; /* Maintain the image aspect ratio */
    object-fit: cover; /* Ensure image covers the container area */
}

/* Responsive scaling for smaller screens */
@media (max-width: 768px) {
    .responsive-image {
        object-fit: contain; /* On smaller screens, use contain to avoid cropping */
    }
}

.mud-date-picker .mud-picker-dropdown {
    bottom: 100% !important; /* Opens the calendar above the input field */
    top: unset !important;   /* Prevents it from opening downward */
}




