.weekCardContainer {
    position: relative;
    display: flex;
    max-width: 500px;
    /* border: 1px solid var(--mr_silver); */
    border-radius: 20px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
    min-height: 550px;
}
.weekCard {
    width: calc(100%);
    background-color: rgb(255, 255, 255);
    position: relative;
    display: flex;
    max-width: 500px;
    /* border: 1px solid var(--mr_silver); */
    border-radius: 20px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px;
    /* gap: 40px; */
    overflow: hidden;
    /* padding: 30px 0px; */
    border-top: 1px solid white;
}
.weekHeader {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 40px;
    background-color: var(--mr_silver);
    color: var(--mr_hypodense);
    font-size: 13px;
    padding-left: 20px;
}
.weekBody {
    display: flex;
    width: 100%;
    flex-direction: row;
    position: relative;
    padding: 10px 0px;
    justify-content: space-between;
}
#weekCardExample {
  display: none;
}
.weekRowHeader {
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    padding-top: 40px;
}
.weekContainer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0px 10px 0px 0px;
    padding: 0px;
    flex: 1;
}
.weekContainer .bedded {
  padding: 0px;
  width: 100%;
}
.weekRow {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    width: 100%;
}
.weekRow #backgroundBadgeContainer {
  margin-left: -5px;
}
.weekRowCell {
    width: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    height: 100%;
    flex: 1;
}
.weekRowCell .highlighted {
    font-weight: bold;
    background-color: var(--mr_hypodense);
    color: white;
    padding: 5px;
    border-radius: 100%;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.weekRowCell .muted {
  color: var(--mr_grayer);
}
.weekRowCell .commentated {
    background-color: rgb(255, 255, 150);
    color: var(--mr_wolf);
}
.weekContainer .bedded .weekRowCell:nth-child(2n) {
  background-color: var(--mr_silver);
}
.weekLegend {
  display: flex;
  justify-content: flex-start;
}
.weekLegend .weekRowCell {
  color: var(--mr_hypodense);
  font-size: 13px;
}
.weekLegend .weekRowCell.today {
  color: var(--mr_wolf);
  font-weight: bold;
}
.stationWeekRow {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.weeksInformation {
  display: flex;
  background-color: rgb(245, 245, 245);
  padding: 10px;
  border-radius: 10px;
  border: 1px dashed var(--mr_gray);
  width: calc(100% - 20px);
  font-size: 13px;
  margin-bottom: 0px;
}
.weeksInformation .weekContainer {
  margin: 0px;
}
.weeksInformation .weekRowHeader {
  padding-top: 0px;
  width: 40px;
  margin-right: 10px;
}
.informationIcon {
  font-size: 25px;
  color: var(--mr_hypodense);
}