.language-select {
  max-width: 115px;
  border: 1px solid #49627a;
  border-radius: 7px;
  padding: 7px 8px;
  background: #213d58;
  color: #fff;
  font: inherit;
}
.project-row {
  width: 100%;
  margin-bottom: 7px;
  display: flex;
  align-items: flex-start;
  text-align: left;
  gap: 9px;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 8px 12px;
  cursor: pointer;
  font-weight: 600;
}
.project-row.active {
  background: #fff7f3;
  border-color: #f3c6b7;
}
.project-row:not(.active) {
  background: #fff;
}
.project-row .process-actions {
  margin-left: auto;
}
.project-row .process-actions button {
  border: 0;
  background: transparent;
  padding: 2px 5px;
  color: #8a98a5;
}
.project-row > span:nth-child(2) {
  min-width: 0;
  flex: 1;
}
.project-row b {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
}
.project-row small {
  display: block;
}
.process-count {
  font-size: 11px;
  color: var(--muted);
  margin: 2px 0 10px;
}
@media (max-width: 900px) {
  .language-select {
    width: 48px;
  }
  .header-actions {
    gap: 4px;
  }
}
