.leave-history-tools {
  display: grid;
  grid-template-columns: repeat(4, minmax(145px, 1fr)) minmax(220px, 1.5fr) auto;
  gap: 12px;
  align-items: end;
  padding: 16px 18px;
  margin: 14px 14px 0;
  border: 1px solid #d7e2eb;
  border-radius: 8px;
  background: #f7fafc;
}

.leave-history-tools label {
  display: grid;
  gap: 6px;
  color: #536b7d;
  font-size: 10px;
  font-weight: 800;
}

.leave-history-tools input,
.leave-history-tools select {
  width: 100%;
  height: 38px;
  border: 1px solid #bdccd8;
  border-radius: 5px;
  background: #fff;
  padding: 0 10px;
  color: #173f5c;
  font: inherit;
}

.leave-history-tools input:focus,
.leave-history-tools select:focus {
  outline: 2px solid #9ed1f2;
  border-color: #2587c8;
}

.leave-history-tools input.invalid {
  border-color: #c83d4c;
  background: #fff8f8;
}

.leave-history-tools .clear {
  height: 38px;
  border: 1px solid #b9cad7;
  border-radius: 5px;
  background: #fff;
  color: #31566f;
  padding: 0 14px;
  font: inherit;
  font-size: 10px;
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
}

.leave-history-result {
  margin: 10px 14px 0;
  color: #667e90;
  font-size: 10px;
}

.leave-history-result b {
  color: #164d72;
  font-size: 13px;
}

@media (max-width: 1100px) {
  .leave-history-tools {
    grid-template-columns: repeat(2, minmax(180px, 1fr));
  }

  .leave-history-tools .search {
    grid-column: span 2;
  }
}
