/* Elephant Progress Bar */
.progress-container {
    margin-top: 1.5rem;
    text-align: center;
}

.elephant-track {
    width: 100%;
    height: 4px;
    background-color: #e0e0e0;
    border-radius: 2px;
    position: relative;
    margin-bottom: 0.5rem;
}

.elephant-walker {
    position: absolute;
    top: -24px;
    /* Adjust based on icon size */
    left: 0;
    transition: left 0.3s ease-out;
    font-size: 1.5rem;
    color: var(--primary-color);
    transform: scaleX(-1);
    /* Flip elephant to face right if needed, FontAwesome elephant usually faces left */
}

/* Animation for walking effect (bobbing) */
@keyframes walk {

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

    50% {
        transform: scaleX(-1) translateY(-3px);
    }
}

.elephant-walker.walking {
    animation: walk 0.5s infinite ease-in-out;
}

#progress-text {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}