
#syrinx-calendar-monthview {
	display: block;
	position: relative;
	min-width: 600px;
	user-select: none;
}

#syrinx-calendar-monthview-topbar {
	min-height: 48px;
	background-color: red;
	position: relative;
}

.monthview-button {
	position: absolute;
	display: block;
	width: 48px;
	height: 48px;
	text-align: center;
	top: 0;
	border: 1px solid black;
	cursor: pointer;
}

#syrinx-calendar-monthview-prev-button {
	left: 0;
}

#syrinx-calendar-monthview-next-button {
	right: 0;
}

#syrinx-calendar-monthview-title {
	position: absolute;
	display: inline-block;
	height: 48px;
	width: 80%;
	width: calc( 100% - 96px );
	margin: auto;
	top: 0;
	left: 0;
	right: 0;
}

.syrinx-calendar-monthview-line {
	height: 48px;
	min-height: 48px;
	background-color: grey;
	position: relative;
}

.syrinx-calendar-monthview-daycell {
	display: inline-block;
	width: 48px;
	height: 48px;
	text-align: center;
	border: 1px solid black;
	cursor: pointer;
}

.syrinx-calendar-monthview-daycell.Available {
	background-color: green;
}

.syrinx-calendar-monthview-daycell.NotAvailable {
	background-color: red;
}
.syrinx-calendar-monthview-daycell.Selected {
	background-color: cyan;
}

#syrinx-calendar-monthview-editday {
	position: absolute;
	width: 240px;
	height: 240px;
	border: 1px solid yellow;
	top: 96px;
	right: 0px;
	visibility: hidden;
}

#syrinx-calendar-monthview-editday-title {
	height: 40px;
	margin-top: 4px;
	margin-bottom: 4px;
	background-color: yellow;
	text-align: center;
}

.not-editday-button {
	height: 40px;
	margin-top: 4px;
	margin-bottom: 4px;
	background-color: yellow;
	cursor: pointer;
	text-align: center;

}

.not-editday-button.Tentative {
	background-color: green;
}

.not-editday-button.NotAvailable {
	background-color: red;
}
.not-editday-button.Confirmed {
	background-color: green;
}

#syrinx-calendar-monthview-editday-key {
	font-size: 12px;
	text-align: center;
	margin-top: 16px;
}

#syrinx-calendar-monthview-editday-key keyN {
	width: 33%;
	background-color: red;
	display: inline-block;
}

#syrinx-calendar-monthview-editday-key keyT {
	width: 33%;
	background-color: green;
	display: inline-block;
}

#syrinx-calendar-monthview-editday-key keyA {
	width: 33%;
	background-color: green;
	display: inline-block;
}


@media only screen and (max-width: 600px) {
	#syrinx-calendar-monthview {
		min-width: 100%;
		max-width: 100%;
		font-size: 14px;
	}
	.syrinx-calendar-monthview-line {
		height: 38px;
		min-height: 38px;
	}
	.syrinx-calendar-monthview-daycell {
		width: 38px;
		height: 38px;
	}
	#syrinx-calendar-monthview-editday {
		position: unset;
		width: 100%;
		height: 180px;

	}
	#syrinx-calendar-monthview-editday-title {
		height: 20px;
	}
	.not-editday-button {
		height: 30px;
	}
}

