.performance-toolbar {
  align-items: end;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
}

.performance-toolbar label {
  color: #51616b;
  display: grid;
  font-size: 13px;
  font-weight: 700;
  gap: 6px;
}

.performance-toolbar select,
.performance-toolbar button {
  border: 1px solid #ccd8de;
  border-radius: 10px;
  font: inherit;
  min-height: 42px;
  padding: 9px 13px;
}

.performance-toolbar button {
  background: #078c56;
  border-color: #078c56;
  color: #fff;
  cursor: pointer;
  font-weight: 800;
}

.performance-toolbar button:disabled {
  cursor: wait;
  opacity: .65;
}

.performance-explanation {
  background: #edf9f3;
  border-left: 4px solid #078c56;
  border-radius: 10px;
  color: #385348;
  margin: 16px 0 0;
  padding: 12px 15px;
}

.performance-table-wrap {
  margin-top: 18px;
  overflow-x: auto;
}

.performance-table {
  border-collapse: collapse;
  min-width: 970px;
  width: 100%;
}

.performance-table th,
.performance-table td {
  border-bottom: 1px solid #e6ecef;
  padding: 13px 11px;
  text-align: left;
  vertical-align: middle;
}

.performance-table th {
  color: #5a6971;
  font-size: 12px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.performance-table td small {
  color: #75828a;
  display: block;
  margin-top: 3px;
}

.technician-cell {
  align-items: center;
  display: flex;
  gap: 10px;
  min-width: 190px;
}

.technician-cell img,
.avatar-placeholder {
  align-items: center;
  background: #edf3f5;
  border-radius: 50%;
  display: flex;
  height: 42px;
  justify-content: center;
  object-fit: cover;
  width: 42px;
}

.rank {
  align-items: center;
  background: #edf1f3;
  border-radius: 50%;
  display: inline-flex;
  font-weight: 900;
  height: 32px;
  justify-content: center;
  width: 32px;
}

.rank-1 { background: #ffd85a; color: #674c00; }
.rank-2 { background: #dbe2e6; color: #34434a; }
.rank-3 { background: #e9b985; color: #62401e; }
.muted { color: #819099; }

@media (max-width: 760px) {
  .performance-toolbar {
    align-items: stretch;
    flex-direction: column;
  }
}
