.button.outline {
  border: 1px solid #dce1da;
  background: #fff;
  color: #34443e;
}

.button.outline:hover {
  border-color: #9cb5ac;
  background: #f9faf8;
}

.button.danger {
  background: var(--red-soft);
  color: var(--red);
}

.button.danger:hover {
  background: #f7d9d6;
}

.modal-actions.split {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
}

.compact-select {
  width: auto;
  max-width: 145px;
  padding: 7px 28px 7px 9px;
  border-radius: 8px;
  font-size: 10px;
}

.incident-head {
  gap: 10px;
}

@media (max-width: 760px) {
  #checkAllButton {
    padding: 10px;
    font-size: 0;
  }

  #checkAllButton svg {
    width: 18px;
  }

  .modal-actions.split {
    grid-template-columns: 1fr 1fr;
  }

  .modal-actions.split > span {
    display: none;
  }

  .modal-actions.split .danger {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}
