.datepicker {
	position: absolute;
    z-index: 10;
    margin-top: 3px;
    padding: 10px;
    margin-left: 2px;
}

.timepicker {
	margin-top: 5px;
}

.calendar {	
	border: solid 1px rgba(0, 0, 0, 0.175);
    border-bottom-right-radius: 8px;
    border-bottom-left-radius: 8px;
	background-color: #c9a784;
	text-align: start;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.monthSpan {
	text-align: center;
    width: calc(100% - 36px);
    display: inline-block;
}

.monthField {
	height: 30px;
    border-radius: 5px;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.yearTimeField {
	height: 30px;
	border: solid 1px rgba(0, 0, 0, 0.5);
    border-radius: 5px;
    margin: 5px;
    text-align: center;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.yearField {
	max-width: 4em;
}

.timeField {
	max-width: 2.7em;
}

.calendarSpan {
	min-width: 1.9em;
	display: inline-block;
	text-align: center;
    margin: 1px;
}

.daySpan {
	border: solid 1px rgba(0, 0, 0, 0.175);
	background-color: #a56e36;
	color: white;
}

.dateSpan {
	border: solid 1px rgba(0, 0, 0, 0.175);
	background-color: white;
	cursor: pointer;
    border-radius: 8px;
}

.dateSpan:hover {
    background-color: #95c984;
    color: #2d0909;
}

.weekend {
	background-color: #543d27;
	color: white;
}

.selectedDay {
	background-color: #84a6c9 !important;
	color: white;
}
