#statusCard-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
  gap: 10px;
}
.statusCards {
  flex: 0 0 300px;
  display: flex;
  justify-content: space-between;
  padding: 4px 20px;
  background-color: white;
  height: 125px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.statusCards:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}
#totalDeliveriesCount,
#inProgressCount {
  border-top: 5px solid #4285f4;
}
#inTransitCount {
  border-top: 5px solid #fbbc05;
}
#pendingCount,
#activeDeliveriesCount {
  border-top: 5px solid #ea4335;
}
#deliveredCount,
#deliveredTodayCount {
  border-top: 5px solid #34a853;
}

#recentDeliveries {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  background-color: white;
  border-radius: 10px;
  width: 90vw;
  height: auto;
  padding: 2px 20px;
  margin: 20px auto;
  min-height: 450px;
}
#processGoods-container {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  background-color: white;
  border-radius: 10px;
  width: 83vw;
  height: auto;
  padding: 2px 20px;
  margin: 20px auto;
  min-height: 450px;
}
#recentshead,
#processGoodsHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 10px;
  height: 40px;
}
#recents {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 0 30px;
  margin: 10px auto;
  max-width: 54vw;
  width: 50vw;
}
#recentandstorageinfo-container {
  display: flex;
  justify-content: space-between;
  margin: 10px auto;
  width: 82vw;
}
#storageInfo-container {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  background-color: white;
  border-radius: 10px;
  width: 30vw;
  max-width: 30vw;
  height: auto;
  padding: 2px 20px;
  margin: 20px 5px 20px 10px;
  min-height: 150px;
}
#storageInfo {
  font-size: 16px;
}
@media (max-width: 800px) {
  #recentandstorageinfo-container {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    margin: 10px auto;
    width: 100%;
    gap: 20px;
  }
  #recentDeliveries,
  #processGoods-container {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    background-color: white;
    border-radius: 10px;
    margin: 10px auto;
    width: 99%;
    height: auto;
    padding: 4px 20px;
    min-height: 300px;
  }
  #storageInfo-container {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    background-color: white;
    border-radius: 10px;
    min-width: 99%;
    height: auto;
    padding: 2px 20px;
    margin: 0 auto;
    min-height: 150px;
  }
  #viewGoods {
    width: 90%;
    height: 50px;
    margin: 2px 30px 10px 30px;
    background-color: #4285f4;
    color: white;
    font-size: 16px;
    font-weight: bolder;
  }
  #viewGoods:hover {
    background-color: #6ca4ff;
  }
}
@media (max-width: 800px) {
  #statusCard-container,
  #recentandstorageinfo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 5px auto;
  }
  .statusCards {
    flex: 0 0 100px;
    padding: 4px 20px;
    background-color: white;
    margin: 5px auto;
    width: 99%;
    height: 125px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
}
