
.calendar-container {
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
}
.calendar-header {
    flex-shrink: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
	padding: 0;
	margin-bottom: 1rem;
}
.calendar-header .month-title {
	color: #0172ad;
	font-size: 1rem;
    line-height: 1.5rem;
}
.calendar-days {
    flex-shrink: 0;
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.75rem;
    text-align: center;
	text-transform: uppercase;
    font-weight: 600;
	margin-bottom: 0.5rem;
}
.calendar-days .day-name {
    font-size: 0.85rem;
    color: #666666;
    padding: 8px 0;
}
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.75rem;
    align-content: stretch;
}
.day {
    cursor: pointer;
    font-size: 1rem;
	line-height: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
	background: #f3f3f3;
	transition: background 0.25s;
	border-radius: 100%;
	aspect-ratio: 1;
}
.day:not(.disabled):hover {
	background: #eeeeee;
}
.day.disabled {
    opacity: 0.75;
    cursor: not-allowed;
	background: none;
	border: none;
}
.day.today {
    position: relative;
    color: #0172ad;
    font-weight: 600;
}
.day.today::after {
    content: '';
    position: absolute;
    bottom: 50%;
    left: 50%;
    transform: translateX(-50%);
    width: 5px;
    height: 5px;
    background: #0172ad;
    border-radius: 50%;
	margin-bottom: -16px;
}
.day.selected {
    background: #0172ad !important;
    color: white;
}
.day.other-month {
    opacity: 0.25;
}
.btn-container {
	display: flex;
	gap: 0.75rem;
}
.nav-btn {
	font-size: 1rem;
    background: rgba(0,0,0,0.75);
    color: #ffffff;
    border: none;
    width: 1.75rem;
    height: 1.75rem;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
    border-radius: 50%;
    cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.25s, opacity 0.25s;
	user-select: none;
}
.nav-btn span {
}
.nav-btn:hover {
	background: rgba(0,0,0,1);
}
.nav-btn:disabled {
	cursor: default;
	opacity: 0.5;
	background: rgba(0,0,0,0.5);
}
.nav-btn.prev span {
	position: relative;
	right: 1px;
}
.nav-btn.next {
}
