.hello-week .week {
  color: #000;
  font-size: 1.2em; 
  gap: 8px;
}
.hello-week .month {
    gap: 8px;
}


.hello-week .day {
    background-color: #f5f5f5;
    width: calc((100% - 50px) / 7);
    border-radius: 8px;
}

.hello-week .day.is-weekend {
    color: #d5001c;
}

.hello-week .day.is-highlight {
  background-color: #8fbc8f;
  color: #fff; }

.hello-week .day.is-today {
    color: #000;
}

.hello-week .day.is-selected {
    font-weight: bold;
}

.hello-week .day.is-begin-range, .hello-week .day.is-end-range {
  background-color: #42a298 !important;
  color: #fff !important; }

.hello-week .day.is-disabled {
  cursor: not-allowed;
  opacity: .33; }
