.date-box {
/*
  background-color: black;
*/
  background-color: hsl(30, 40%, 25%);
  color: #F2F3F4;
/*
  padding-top: 0.5em;
  padding-bottom: 1em;
*/
  padding-top: 0.3em;
  padding-bottom: 0.3em;
  padding-left:0.3em;
  padding-right:0.3em;
/*
  border-radius: 15px;
*/
  border-radius: 10px;
  margin-top: 1rem;
  text-align: center;
}

.date-box > p {
  font-weight: bold;
  margin-top: 0.3em;
  margin-bottom: 0.3em;
}

.evt-box {
  color: black;
  background-color: #F2F3F4;
  padding: 0.1rem;
  border: 1px solid black;
  border-radius: 8px;
  margin-top: .5rem;
  font-size: 0.7em;
}

.evt-box > p {
  background-color: #F2F3F4;
  margin-top: 0.3em;
  margin-bottom: 0.3em;
}

.evt-title {
  font-weight: bold;
}

.evt-text {
  border-top: 1px dotted black;
}

.evt-text > p {
  margin-top: 0.3em;
  margin-bottom: 0.3em;
  line-height: 1.1;
}

.cal {
  display: flex;
  flex-wrap: nowrap;
  min-height: 100vh;
/*
  align-items: center;
  justify-content: center;
*/
}

.cal-box {
  flex: 4;
  align-self: flex-start;
  border-radius: 10px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.cal-aside {
/*
  height: 100%;
*/
  align-self: flex-start;
  flex: 2;
  border-radius: 10px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.cal-box header {
  display: flex;
  align-items: center;
  padding-top: 15px;
  padding-bottom: 8px;
  justify-content: space-between;
}

header .cal-nav {
  display: flex;
}

.chevron {
  height: 30px;
  width: 30px;
  margin: 0 2px;
  cursor: pointer;
  text-align: center;
  line-height: 30px;
  border-radius: 50px;
  user-select: none;
  font-size: 1.2rem;
}

.chevron:hover {
  background: #F2F2F2;
}

.cal-month {
  font-weight: 500;
  font-size: 1.2rem;
}

.cal-body {
  padding: 10px;
}

.cal-body ul {
  list-style: none;
  flex-wrap: wrap;
  display: flex;
  text-align: center;
  justify-content: space-between;
  padding: 0;
}

.cal-dates {
  margin-bottom: 10px;
  width: 100%;
}

.cal-dates li:hover {
  color: green;
}

.cal-body li {
  width: calc(100% / 7);
  height: 30px;
  line-height: 30px;
  font-size: 0.9rem;
  margin-top: 20px;
  position: relative;
  z-index: 1;
  cursor: pointer;
  text-align: center;
/*
  box-sizing: border-box;
*/
}

.w-days {
  width: 100%;
}

.w-days li {
  cursor: default;
  font-weight: 500;
  font-size: 0.85rem;
}

.cal-dates li.inactive {
  font-style: italic;
  cursor: default;
}

.cal-dates li.active {

}

.cal-dates li.evts {
  font-size: 1rem;
  font-weight: bold;
  color: blue;
}

.cal-dates li.highlight {
  color: red;
}

/* SUSPENDED FORMATS
.cal-dates li::before {
  position: absolute;
  content: "";
  z-index: -1;
  top: 50%
  left: 50%;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.cal-dates li.active::before {
  background: #6964FF;
}

.cal-dates li:not(.active):not(highlight):hover::before {
  background: #858484;
}

cal-dates li.no-evt {
  color: #444;
}
*/
