#repo-growth {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.bar-label {
    width: 90px;
    text-align: right;
    font-size: 0.8rem;
    color: #bbb;
}

.track {
    position: relative;
    flex: 1;
    height: 20px;
    background: #222;
    border-radius: 999px;
    overflow: hidden;
}

.bar {
    position: absolute;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #ffd166, #ef476f);
    border-radius: inherit;
}

.value-text {
    position: absolute;
    right: 2px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.7rem;
    color: #111;
    font-weight: 600;
    white-space: nowrap;
    pointer-events: none;
}
