.admin-workbench-body {
  display: grid;
  grid-template-columns: minmax(190px, 240px) minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.admin-workbench-body .sidebar {
  min-height: auto;
}

.admin-workbench-main {
  display: grid;
  gap: 14px;
}

.permission-list {
  display: grid;
  gap: 8px;
}

.permission-row {
  border: 1px solid var(--line);
  background: #fff;
  padding: 10px;
}

.worker-skill-form {
  display: grid;
  gap: 10px;
  border-top: 1px solid var(--line);
  padding-top: 10px;
}

.worker-skill-head {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted);
  font-size: 12px;
}

.worker-skill-head strong {
  color: var(--blue-950);
  font-size: 13px;
}

.worker-skill-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(128px, 1fr));
  gap: 8px;
}

.worker-skill-option {
  display: flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
  border: 1px solid var(--line);
  background: #f8fafc;
  padding: 8px;
  font-size: 12px;
  font-weight: 800;
}

.worker-skill-option input {
  flex: 0 0 auto;
}

.worker-skill-option span {
  min-width: 0;
}
