.simple-calendar {
  .calendar-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;

    & time {
      font-weight: 500;
    }

    & a {
      text-decoration: none;
    }
  }

  & a {
    border: 0;
    background: none;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: black;
    border-radius: 100%;
    width: 2rem;
    height: 2rem;

    &.active,
    &.active:hover {
      background: var(--medium-blue);
      border-radius: 100%;
    }

    &:hover {
      background: var(--lightest-gray);
    }
  }

  .day {
    text-align: center;
    padding: 0;
  }
}
