.schedule {
  width: 350px;
}
.schedule__title-box {
  align-items: center;
  display: flex;
  height: 40px;
  letter-spacing: -1px;
}
.schedule__title-box > a:not(:first-child) {
  background-color: white;
  border: 1px solid #202020;
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
  line-height: 15px;
  margin-left: 8px;
  padding: 4px 8px;
  text-align: center;
}
.schedule__title {
  font-size: 16px;
  font-weight: bold;
  line-height: 20px;
  margin-right: auto;
}
.schedule__title:hover {
  text-decoration: underline;
}
.schedule__calendar {
  margin-top: 10px;
}

.calendar {
  --cell-size: 28px;
  --main-color: #3f68b6;
  font-size: 13px;
  line-height: 15px;
}
.calendar__days {
  align-items: center;
  background-color: var(--main-color);
  border: 4px solid var(--main-color);
  color: white;
  display: flex;
  height: 38px;
  justify-content: space-between;
  padding: 0 6px;
}
.calendar__dates {
  display: grid;
  border: 4px solid var(--main-color);
  border-top: none;
  grid-template: auto/repeat(7, var(--cell-size));
  height: 262px;
  padding: 10px 6px;
  place-content: space-between;
}
.calendar__cell {
  align-items: center;
  display: flex;
  height: var(--cell-size);
  justify-content: center;
  position: relative;
  text-align: center;
  width: var(--cell-size);
}
.calendar__cell._day {
  background-color: var(--main-color);
  color: white;
}
.calendar__cell._disabled {
  color: #dddddd;
}
.calendar__cell._scheduled {
  border: 2px solid var(--main-color);
  border-radius: 100%;
  cursor: pointer;
}
.calendar__cell._scheduled:hover {
  background-color: var(--main-color);
  color: white;
}
.calendar__cell._today:after {
  background-color: #d86565;
  border-radius: 100%;
  content: '';
  height: 4px;
  position: absolute;
  right: -2px;
  top: -2px;
  width: 4px;
}
