*{
  margin: 0rem;
  padding: 0rem;
  box-sizing: border-box;
}

.Calul {
  list-style: none;
}
.PrevMonth{
    color:#aaa;
}
.StatCard {
    width: 100%;
    max-width: 25rem;
    min-width: 15rem;
    height: auto;
    margin: 0rem auto;
    display: grid;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    box-shadow: 0 0rem 0.5rem #ccc;
}
.CalCard {
    font-size: 11px;
    font-family: sans-serif;
    
    width: 100%;
    max-width: 25rem;
    min-width: 15rem;
    min-height: 10rem;
    margin: 0rem auto;
    display: grid;
    grid-template-rows: 2.5rem auto;
    box-shadow: 0 0rem 0.5rem #ccc;
}
.card__header, .card__footer {
  font-size:11px;
  padding: 1rem 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.card__body {
    padding: 0.1rem 0.0rem;
}
.card__body--days {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 1rem;
    padding: 0px;
    margin: 0px;
}
.card__body--days li {
    flex: 1;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    color: #7D8994;
    
}
.card__body--dates {
    display: grid;
    gap: 1px;
    grid-template-columns: repeat(7, 1fr);
    justify-items: center;
    text-align: center;
    padding: 0px;
    margin: 0px;
}
.card__body--dates li {
  width: 2.0rem;
  height: 2.0rem;
  display: grid;
  place-items: center;
  font-weight: bold;
  position: relative;
}
    .card__body--dates li:hover {
        border: 1px solid black;
        font-size: larger;
        cursor: default;
    }
.card__body--dates li.prev,
.card__body--dates li.next {
  color: #ccc;
}
/*.card__body--dates li.active {
  background: #DE6E46;
  color: #ffffff;
  border-radius: 50%;
}
.card__body--dates li.circle {
  border: 2px solid;
  border-radius: 50%;
}
.card__body--dates li.circle span {
  position: absolute;
  top: -0.75rem;
  right: -0.5rem;
  width: 1.75rem;
  height: 1.75rem;
  font-size: 1.2rem;
  color: #ffffff;
  border-radius: 50%;
}*/