#home-calendar {
  border: 1px solid #00A86B;
  border-radius: 0;
  overflow: hidden;
  background: #1D3329;
  color: #F2F5F3;
}

#home-calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #00A86B;
  color: #F2F5F3;
  padding: 0.45rem 0.6rem;
}

#home-calendar-month-label {
  margin: 0;
  font-size: 1rem;
}

#home-calendar-prev,
#home-calendar-next {
  border: 0;
  background: transparent;
  color: #F2F5F3;
  font-size: 1.2rem;
  cursor: pointer;
}

#home-calendar-prev:hover,
#home-calendar-next:hover {
  opacity: 0.82;
}

#home-calendar-prev:focus-visible,
#home-calendar-next:focus-visible {
  outline: 2px solid var(--kl-focus);
  outline-offset: 2px;
}

#home-calendar-weekdays,
#home-calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}

#home-calendar-weekdays {
  text-align: center;
  font-weight: 700;
  color: #F2F5F3;
  border-bottom: 1px solid #00A86B;
  background: #244236;
}

#home-calendar-weekdays div {
  padding: 0.35rem 0;
}

.home-calendar-day {
  min-height: 38px;
  border: 0;
  border-right: 1px solid #2f5a4a;
  border-bottom: 1px solid #2f5a4a;
  background: #1D3329;
  color: #F2F5F3;
  cursor: pointer;
}

.home-calendar-day:nth-child(7n) {
  border-right: 0;
}

.home-calendar-day:hover {
  background: #244236;
}

.home-calendar-day.has-jobs {
  box-shadow: inset 0 -3px 0 #00A86B;
  font-weight: 700;
}

.home-calendar-day.has-jobs-completed {
  box-shadow: inset 0 -3px 0 #B2C0B9;
  font-weight: 700;
}

.home-calendar-day.is-selected {
  background: #00A86B;
  color: #F2F5F3;
  font-weight: 700;
}

.home-calendar-day.has-jobs.is-selected {
  box-shadow: none;
}

.home-calendar-day.has-jobs-completed.is-selected {
  box-shadow: none;
}

.home-calendar-day.is-empty {
  background: #16271f;
  cursor: default;
}
