.osp-calendar {
    display:flex;
    flex-direction: column;
    justify-content: space-around;
    background-color: #ffffff;
}
.calendar-menu {
    padding: 10px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
/*    justify-content: space-around; /* buttons ( the content) have space around each. */
}
.calendar-menu button {
    margin: 10px;
    background-color: #ffffff;
    font-size: 1.25em;
    font-weight: bold;
    color: #c8102e;
}
.calendar-menu button.current {
    color: #333333;
    background-color: #eeeeee;
}
.calendar-menu button:hover {
    background-color: #eeeeee;
}
.calendar-session {
    display: flex;
    flex: 1;
    flex-direction: column;
    display:none; /* Hide all the sessions to start out!  /* */
}
.cal-row {
    display: flex;
    flex-direction: row;
    padding: 10px;
    border-bottom: solid 2px;
}
.cal-row:nth-child(even) {
    background-color: #ffffff;
}
.cal-row:nth-child(odd) {
    background-color: #eeeeee; 
}
.cal-row div {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 5px;
    min-width: 100px;
}
   .cal-row div:last-child {
    display: flex;
    flex-direction: column;
    flex: 9;
}
.cal-row div p {
    margin: 0;
}
.cal-row div p a {
    font-weight: bold;
}