body {
  margin: 0;
  padding: 0;
  font-family: "Public Sans", sans-serif !important;
}
#root {
  display: flex;
  position: relative;
}
#main {
  width: 84%;
  padding: 40px;
  background-color: #f5f6f7;
}
.topSection {
  border-bottom: 1px solid lightgray;
  padding: 0 24px;
}
.topSection h1 {
  font-size: 20px;
  font-weight: 600;
}
.topSection p {
  font-size: 14px;
}
#deviceIdData {
  font-size: 18px;
  font-weight: 500;
  margin: 0 24px;
  padding: 20px 24px;
  margin-top: 24px;
  display: flex;
  gap: 32px;
  /* border: 1px solid black; */
  background-color: white;
  border-radius: 8px;
}
#deviceIdData p {
  margin: 0;
}
.customerName {
  display: flex;
  gap: 8px;
  /* border: 1px solid black; */
}
.deviceId {
  display: flex;
  gap: 8px;
  /* border: 1px solid black; */
}
.deviceId select {
  border: none;
  outline: none;
  font-size: 16px;
  font-weight: 500;
  height: 30px;
  background-color: #efefef;
  border-radius: 4px;
  padding: 0 8px;
}
.dateAndTime {
  display: flex;
  gap: 8px;
  /* border: 1px solid black; */
}
.mapView{
  /* border: 1px solid black; */
  margin-left: auto;
  margin-right: -12px;
}
/* .downloadReport{
  border: 1px solid black;
  margin-left: auto;
} */
#deviceDataCardContainer {
  /* border: 1px solid black; */
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 24px;
}
.deviceDataCard {
  /* border: 1px solid black; */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  background-color: white;
  border-radius: 8px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px,
    rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
}
.deviceDataCardContent {
  /* border: 1px solid black; */
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.deviceDataCardContent p {
  margin: 0;
  font-size: 14px;
  color: #626c70;
}
.deviceDataCardContent h1 {
  font-size: 24px;
}
.deviceDataCardImg {
  /* border: 1px solid black; */
  padding: 20px;
  border-radius: 50%;
  background-color: #ecfff6;
}
.chartConatiner {
  /* border: 1px solid black; */
  padding: 12px 24px;
  border-radius: 8px;
  position: relative;
}
.refreshChart {
  position: absolute;
  z-index: 1;
  top: 24px;
  right: 36px;
  border-radius: 50% !important;
  font-size: 18px !important;
  border: 1px solid lightgray !important;
}
.refreshChart:hover {
  background-color: #efefef !important;
  color: #0d5e36 !important;
}
.myChart {
  border-radius: 8px;
  overflow: hidden;
  height: 600px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px,
    rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
  /* border: 1px solid black; */
}
