.h1 {
  margin: 5px;
}
.h3 {
  margin: 20px;
}

#stockReportChart {
  margin: 20px 5em;
  display: block;
  /*margin-right: auto;
  margin-left: auto;*/
  width: auto;
  height: 500px;
}

#lowStockExport {
  margin: 10px;
}

#lowStockList .card {
  background-color: white;
  padding: 15px;
  margin: 0;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #e9e7e7;
}
#lowStockList .card:last-child {
  border-bottom-color: #c8102e5c;
}
#lowStockList  .card-icon {
  background-color: #da1931;
  color: white;
  font-size: 10px;
  padding: 2px;
  border-radius: 50%;
  margin-right: 10px;
}
#lowStockList .scrollable {
  max-height: calc(350px);
  overflow-y: auto;
  padding: 0;
  background-color: whitesmoke;
}
#lowStockList .stock-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  margin-top: 5px;
}
#lowStockList .stock-name,
#lowStockList .stock-quantity {
  margin: 0;
  font-weight: bold;
  margin-right: 15px;
  width: 300px;
}