.medicationBox {
  display: flex;
  align-items: center;
  max-width: 200px;
  border-radius: 10px;
  border: 1px solid #cccccc;
  padding: 0px 10px 0px 5px;
  background-color: #ffffff;
  min-width: 200px;
  position: relative;
}
.medicationBoxGray {
  background-color: #fafafa;
}
.medicationBox_left {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  min-width: 45px;
  max-width: 45px;
}
.medicationBox_left_date {
  color: #8b8b8b;
  font-weight: bold;
  font-size: 16px;
  width: 100%;
  text-align: center;
}
.medicationBox_left_dose {
  color: #489dff;
  font-weight: bold;
  font-size: 16px;
  width: 100%;
  text-align: center;
  white-space: nowrap;
}
.medicationBox_dividerBar {
  max-width: 4px;
  min-width: 4px;
  height: 36px;
  margin: 2px 5px;
}
.medicationBox_right {
  display: flex;
  align-items: center;
  /* flex-wrap: wrap;   */
  width: 100%;
  /* remove flexwrap to vertical center the medicine item */
}
.medicationBox_right_top {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  align-items: center;
}
.medicationBox_right_top_shortName {
  font-size: 16px;
  max-width: 100px;
}
.medicationBox_right_top_pattern {
  font-size: 16px;
  color: #29d513;
  font-weight: bold;
  /* margin-left: auto;
  margin-right: auto; */
}

.medicationBox_right_longName {
  width: 100%;
  font-size: 1px;
  font-weight: 400;
  font-style: italic;
  color: #8b8b8b;
  max-width: 140px;
}
.medicationBox_addNew {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  font-size: 30px;
  opacity: unset;
}
