#loadingIndicator {
  display: block;
  text-align: center;
  margin-top: 3rem;
}
.start-end-date-container {
  display: flex;
  gap: 2rem;
  align-items: flex-end;
  margin-bottom: 2rem;
}
#applyFilter {
  height: fit-content;
  width: fit-content;
  font-weight: 500;
}
#clearFilter {
  background-color: #fff;
  border-color: #ddd;
  color: #333;
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 6px 10px;
}
#clearFilter:hover {
  background-color: #f5f5f5;
}
#clearFilter svg {
  width: 20px;
  height: 20px;
}
@media only screen and (max-width: 590px) {
  .start-end-date-container {
    flex-direction: column;
    align-items: flex-start;
  }
}
