.calendar-container {
	background: var(--white);
	width: 50%;
	border-radius: 2rem;
}

.calendar-container header {
	display: flex;
	align-items: center;
	padding: 25px 30px 10px;
	justify-content: space-between;
}

header .calendar-navigation {
	display: flex;
}

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: #aeabab;
	font-size: 1.9rem;
}

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

header .calendar-navigation span:hover {
	background: #f2f2f2;
}

header .calendar-current-date {
	color: var(--melon);
	font-weight: bolder;
	font-size: 1.45rem;
}

.calendar-body {
	padding: 10px;	
}

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

@media (max-width: 758px) {
    .calendar-body ul {
        margin: 0;
		padding: 0;
    }
}

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

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

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

.calendar-body .calendar-dates li {
	margin-top: 30px;
	position: relative;
	z-index: 1;
	cursor: pointer;
	color: var(--white);
}

.calendar-dates li.inactive {
	color: #aaa;
}

.calendar-dates li.active {
	color: var(--white);
}

.calendar-dates li.occupied::before {
    background: tomato;
}

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

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

.calendar-dates li.free::before {
	background: #77dd77;
}

.calendar-dates li:not(.active):hover::before {
	background: #e4e1e1;
}

.calendar-wrapper{
    display: grid;
    grid-template-columns: auto auto;
    grid-template-rows: auto auto;
}

.room-title{
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
	color: var(--melon);
	font-family: var(--font-2);
}

/* @media (max-width: 600px) {
    .calendar-container{
        width: 350px;
    }
    .calendar-wrapper{
        grid-template-columns: auto;
        grid-template-rows: auto auto auto auto;
    }
} */
