.calendar-container:not(:first-child) {
  margin-top: 3.5rem;
}

.month-year-header {
  margin-bottom: 16px;
  font-weight: bold;
  font-size: 1.25rem; /* 20px */
  line-height: 1.75rem;
}

.calendar {
  display: grid;
  font-size: var(--kalel-fz, small);
  grid-template-columns: var(--kalel-gtc, repeat(7, 1fr));
  grid-template-rows: 40px;
  grid-auto-rows: minmax(100px, auto);
  list-style: none;
  margin: unset;
  padding: unset;
  position: relative;
}

.calendar .day-name {
  text-align: center;
}
/* add border to calendar days */
.calendar li {
  border: 1px solid #eaeaea;
  padding: 0.5rem;
  display: flex;
  flex-flow: column;
  justify-content: flex-start;
}

/* select first 7 .calendar li items */
.calendar li:nth-child(-n + 7) {
  height: 40px;
  border: 0;
  padding: 0;
}

.current-day {
  color: red;
}

p.event {
  margin-bottom: 10px;
  line-height: 1.5;
  order: 1;
}

p.event.all-day {
  background: black;
  color: white;
  padding: 8px;
  border-radius: 6px;
  order: 0;
}
