.rescue-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-left: 3px solid var(--red);
  background: #fffafb;
}
.rescue-action h3 {
  margin: 5px 0;
  font-size: 15px;
}
.rescue-action p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}
.rescue-action button {
  flex: 0 0 auto;
}
.alert-history-wrap {
  height: 430px;
  max-height: 430px;
  overflow-y: scroll;
  overflow-x: auto;
}
.alert-history-wrap .data-table {
  min-width: 620px;
}
.alert-tools {
  display: flex;
  gap: 7px;
  align-items: center;
  flex-wrap: wrap;
}
.alert-tools input {
  min-height: 32px;
  border: 1px solid var(--line);
  padding: 4px 6px;
  font-size: 11px;
}
#page-alerts .split > .card:first-child > .table-wrap {
  height: 430px;
  max-height: 430px;
  overflow-y: scroll;
  overflow-x: auto;
}
@media (max-width: 900px) {
  .rescue-action {
    align-items: stretch;
    flex-direction: column;
  }
  .rescue-action button {
    width: 100%;
  }
  .alert-history-wrap,
  #page-alerts .split > .card:first-child > .table-wrap {
    height: 360px;
  }
}
