.hoursContainer {
  display: flex;
  justify-content: center;
  align-items: center;
}
  
.hours {
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  width: 100%;
}
  
.details {
  font-size: 1.3rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
  
.AMShift {
  background-color: rgba(128, 128, 128, 0.2);
  border-radius: 35px;
  max-width: 50%;
  align-self: flex-start;
  margin-left: 1rem;
  padding: 0.25rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; 
  position: relative;
  z-index: 1;
}
  
.PMShift {
  max-width: 50%;
  align-self: flex-end;
  background-color: rgba(128, 128, 128, 0.2);
  border-radius: 35px;
  padding: 0.25rem 1rem;
  margin-right: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  top: -3rem;
  z-index: 2;
}
  
.pickup {
  background-color: rgba(128, 128, 128, 0.2);
  border-radius: 35px;
  max-width: 50%;
  align-self: flex-start;
  margin-left: 1rem;
  padding: 0.25rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; 
  position: relative;
  top: -6rem;
  z-index: 3;
  margin-bottom: -5.5rem;
}
  
.walkIns {
  max-width: 50%;
  align-self: flex-end;
  background-color: rgba(128, 128, 128, 0.2);
  border-radius: 35px;
  padding: 0.25rem 1rem;
  margin-right: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  top: -3rem;
  z-index: 4;
}
  
.important {
  background-color: rgba(128, 128, 128, 0.2);
  border-radius: 35px;
  max-width: 50%;
  align-self: flex-start;
  margin-left: 1rem;
  padding: 0.25rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; 
  position: relative;
  top: -6rem;
  z-index: 3;
  margin-bottom: -5.5rem;
}

.subTitle {
  text-decoration: underline;
} 
  
.largeDivider {
  width: 1px;
  background-color: black;
  height: 10rem;
  margin: 0.5rem;
}
  
.title-icon {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0rem;
}

.icon {
  font-size: 25px;
  margin-right: 15px;
}

.icon-title {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0;
  color: black;
}

.details {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  justify-content: center;
}

.time {
  font-size: 1.3rem;
  text-align: center;
}

.detailsLeft, .detailsRight {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Tablet View - Hours Collapsed View */
@media screen and (max-width: 596px) {
  .hoursContainer {
    flex-direction: column;
  }
  .hours {
    padding: 0 1rem;
    display: block;
  }
  .AMShift, .PMShift, .pickup, .walkIns, .important {
    max-width: 100%;
    margin: 2rem 0;
    top: 0;
  }
  .walkIns {
    margin-top: 0rem;
  } 
}

/* Mobile View */
@media screen and (max-width: 480px) {
  .details {
    flex-direction: column;
  }

  .detailsLeft, .detailsRight {
    width: 100%;
    text-align: center;
    margin-bottom: 1rem;
  }

  .largeDivider {
    display: none;
  }

  .icon-title {
    font-size: 1.3rem;
  }

  .time, .days, .subTitle, .closing {
    font-size: 1rem;
  }
}
