.judge-category-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 9px;
}

.judge-category-toolbar small {
  color: #777;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .08em;
}

.judge-category-toolbar button {
  min-height: 32px;
  padding: 0 11px;
  border: 1px solid #bbb7ad;
  background: #111;
  color: rgb(215, 255, 57);
  font: 400 10px/1 Anton, sans-serif;
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
}

.judge-category-toolbar button:disabled {
  opacity: .4;
  cursor: default;
}

@media (max-width: 500px) {
  .judge-category-toolbar {
    align-items: stretch;
    flex-direction: column;
    gap: 7px;
  }

  .judge-category-toolbar button {
    width: 100%;
  }
}
