/* Elephant Progress Bar Updates */
.elephant-walker {
    color: black !important;
    /* Fully black as requested */
    font-size: 1.2rem;
    /* Small size */
    transition: left 0.5s linear;
    /* Smooth walking */
}

.elephant-track {
    background-color: rgba(0, 0, 0, 0.1);
    /* Subtle track */
}

/* Background Animals */
#animal-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    /* Let clicks pass through */
    z-index: -1;
    /* Behind everything */
    overflow: hidden;
}

.roaming-animal {
    position: absolute;
    color: black;
    opacity: 0.15;
    /* Subtle visibility */
    font-size: 24px;
    /* Small size */
    will-change: transform;
}

/* Animation for walking animals */
@keyframes walk-right {
    0% {
        transform: scaleX(-1) translateX(0);
    }

    50% {
        transform: scaleX(-1) translateX(-5px);
    }

    100% {
        transform: scaleX(-1) translateX(0);
    }
}

@keyframes walk-left {
    0% {
        transform: scaleX(1) translateX(0);
    }

    50% {
        transform: scaleX(1) translateX(-5px);
    }

    100% {
        transform: scaleX(1) translateX(0);
    }
}

.walking-right {
    animation: walk-right 1s infinite linear;
}

.walking-left {
    animation: walk-left 1s infinite linear;
}