.calendar-container {
    width: 100%;
}

.calendar-container header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;

}

.calendar-container header .calendar-navigation {
    display: flex;
}

.calendar-container header .calendar-navigation span {
    height: 38px;
    width: 38px;
    margin: 0 1px;
    cursor: pointer;
    text-align: center;
    line-height: 38px;
    border-radius: 50%;
    user-select: none;
    color: var(--text-faded);
    font-size: 1.9rem;
}

.calendar-navigation span:last-child {
    margin-right: -10px;
}

.calendar-container header .calendar-navigation span:hover {
    background: var(--surface-panel);
}

.calendar-body ul {
    list-style: none;
    flex-wrap: wrap;
    display: flex;
    text-align: center;
	padding-left: 0;
}

.calendar-body .calendar-dates {
    margin-bottom: 20px;
}

.calendar-body li {
    width: calc(100% / 7);
    font-size: 0.8rem;
    color: var(--text-body);
}

.calendar-body .calendar-weekdays li {
    cursor: default;
    font-weight: 500;
}

.calendar-body .calendar-dates li {
    margin-top: 15px;
    position: relative;
    z-index: 1;
    cursor: pointer;
}

.calendar-dates li.inactive a {
    color: var(--text-faded);
}

.calendar-dates li.active a {
    color: #fff;
}

.calendar-dates li::before {
    position: absolute;
    content: "";
    z-index: -1;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.calendar-dates li.active::before {
    background: #0d6efd;
}

.calendar-dates li:not(.active):hover::before {
    background: var(--surface-focus);
}

.calendar-day .timeline-time {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  width: fit-content;
  padding: 0 20px;
}

.calendar-day .timeline-item:not(:first-child) {
    margin-top: 15px;
}

.calendar-day .timeline-content .card {
  border-top-left-radius: 0 !important;
}