.r__sidebar-monitor__row,
.r__sidebar-monitor__stat {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    min-height: 32px;
    padding: 5px 10px 5px 40px;
    font-size: 0.8125rem;
    color: #3d4450;
    list-style: none;
}

.r__sidebar-monitor__label,
.r__sidebar-monitor__stat-label {
    flex: 1 1 auto;
    min-width: 0;
    font-weight: 400;
}

.r__sidebar-monitor__value {
    font-weight: 500;
    color: var(--r__sidebar-text);
}

.r__sidebar-monitor__counts {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 6px 10px;
    align-items: center;
    flex-shrink: 0;
}

.r__sidebar-monitor__count {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--r__sidebar-text);
    white-space: nowrap;
}

.r__sidebar-monitor__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
}

.r__sidebar-monitor__dot--normal { background: #22c55e; }
.r__sidebar-monitor__dot--yellow { background: #f59e0b; }
.r__sidebar-monitor__dot--red { background: #ef4444; }

.r__sidebar--collapsed .r__sidebar-monitor {
    display: none;
}

