.boomerang-bar-wrapper {
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.boomerang-bar-fill {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
}

.boomerang-bar-percent {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
}

.boomerang-label span:first-child {
    color: #059669;
}

.boomerang-label span:last-child {
    color: #6b7280;
}

@keyframes boomerang-fill {
    from { width: 0; }
}

.boomerang-bar-fill {
    animation: boomerang-fill 1.2s ease-out forwards;
}
