.admin-judge-item {
  grid-template-columns: minmax(0, 1fr) minmax(160px, .8fr) auto minmax(150px, auto) !important;
}

.judge-item-actions {
  display: flex !important;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px !important;
}

.judge-item-actions button {
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid #ccc8bf;
  background: #fff;
  font: 400 10px/1 Anton, sans-serif;
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
}

.judge-item-actions .delete-judge {
  border-color: #c9503f;
  color: #a92e1e;
}

.judge-item-actions button:disabled {
  opacity: .45;
  cursor: wait;
}

.judge-status.active {
  background: #d7ff39 !important;
  color: #334200 !important;
}

.judge-status.invited {
  background: #fff0cf !important;
  color: #8a6417 !important;
}

.judge-status.blocked {
  background: #f7ddd7 !important;
  color: #922f1c !important;
}

@media (max-width: 650px) {
  .admin-judge-item {
    grid-template-columns: minmax(0, 1fr) auto !important;
  }

  .admin-judge-item > div:nth-child(2),
  .judge-item-actions {
    grid-column: 1 / -1;
  }

  .judge-item-actions {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .judge-item-actions button {
    min-width: 0;
    padding: 0 6px;
  }
}
