.business-calendar {
  max-width: 318px;
  margin: 0 auto 4em;
  font-size: 14px;
}

.business-calendar table {
  width: 100%;
  margin-bottom: 8px;
  border: 1px solid #ccc;
  border-collapse: collapse;
  line-height: 2.5;
  text-align: center;
}

.business-calendar caption {
  font-size: 16px;
  font-weight: bold;
}

.business-calendar :where(th,td) {
  border: 1px solid #ccc;
  line-height: 1lh;
}

.business-calendar .sun {
  color: #d00;
}

.business-calendar .sat {
  color: #00d;
}

.business-calendar .is-today {
  color: #00d;
  font-weight: bold;
}

.business-calendar .is-other-month {
  opacity: 0.6;
}

.business-calendar .legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: bold;
}

.business-calendar .legend-color {
  width: 18px;
  height: 18px;
  border: 1px solid #ccc;
}

.business-calendar .splide__arrows {
  position: absolute;
  z-index: 1;
  top: 0;
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.business-calendar .splide__arrow {
  display: grid;
  place-content: center;
  width: 38px;
  height: 38px;
  border: none;
  background: none;
}

.business-calendar .splide__arrow span {
  width: 11px;
  height: 11px;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
  font-size: 0;
}

.business-calendar .splide__arrow--prev span {
  rotate: -45deg;
}

.business-calendar .splide__arrow--next span {
  rotate: 135deg;
}