
.calendarview > .message > .message-header {
	display: block;
	justify-content: center;
}

.weekNav {
	display: flex;
	justify-content: space-between;
}

.weekButton {
	padding-top: .6em;
}

.weekNameSelect {
	display:flex;
	margin-top: .2em;
	padding-top: .2em;
	height: 1.7em;
	width: auto;
	max-width: 77%;
	border-radius: 4px;
	text-align: center;
	text-decoration: none;
	background-color: rgb(192,228,237);
	color: rgb(0,91,109);
}

.weekNameButton {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.weekNameSpace {
	min-width: 1.5em;
	max-width: 3em;
}

.calendarview .message a:not(.button):not(.tag):not(.dropdown-item) {
	text-decoration: none;
}

.weekNavCall {
	min-width: 2em;
	width: 2em;
	float:right;
}

.weekButtonLeft ,
.weekButtonRight {
	min-width: 10%;
}

.calendarview .message .weekButtonLeft a:not(.button):not(.tag):not(.dropdown-item),
.calendarview .message .weekButtonRight a:not(.button):not(.tag):not(.dropdown-item),
.calendarview .message .weekBackLeft a:not(.button):not(.tag):not(.dropdown-item),
.calendarview .message .weekBackRight a:not(.button):not(.tag):not(.dropdown-item) {
	font-size: 2em;
	margin-top: 0em;
	padding-top: 0em;
	text-align: center;
	text-decoration: none;
}

.calendarview .message .weekButtonRight a:not(.button):not(.tag):not(.dropdown-item),
.calendarview .message .weekBackRight a:not(.button):not(.tag):not(.dropdown-item) {
	float:right;
}

.calendarview .message a:not(.button):not(.tag):not(.dropdown-item):hover {
	color:rgb(246,160,0);
	text-decoration: underline;
}

.calendarview > .message > .message-footer {
	display: flex;
	justify-content: space-between;
	background-color:rgb(0,91,109);
	padding: 0 16px;
}

.weekTitle {
	text-align: center;
}

.weekdays {
	padding: 0px;
}

.arrowImg,
.arrowNameImg {
	min-width: 22px;
	width: 22px;
}

.callImg {
	width: 32px;
}

.backImg {
	width: 28px;
}

.trashImg {
	width: 20px;
}

printListShort > table > tbody > tr,
printListLong > table > tbody > tr {
	height: 30px;
}
printListShort > table > tbody > tr > td > a,
printListLong > table > tbody > tr > td > a {
	padding-left: 35px;
	padding-bottom: 35px;
}


.arrowImg,
.callImg,
.backImg {
	background-color: rgb(192,228,237);
}

.arrowNameImg {
	background-color: rgb(0,91,109);
}

.arrowImg:hover,
.arrowNameImg:hover,
.callImg:hover,
.backImg:hover {
	background-color: rgb(246,160,0);
}

.trashImg { 
	background-color: black;	
}

.trashImg:hover {
	background-color: rgb(246,160,0);	
}

.slotbutton {
	color:white;
	background-color: rgb(0,91,109);
	margin:auto;
	margin: 8px;
	padding: 10px;
	width: 64px;
	border: none;
	border-radius: 4px;
}

.slotbutton:hover {
	color: rgb(246,160,0);
}


/* ************************************************* */


.calVertical {
	width: fit-content;
	margin: auto;
}

.calVertical .day {
	display: inline-block;
	text-align: center;
	margin: auto;
	vertical-align: top;
	background-color: white;
	width: 105px;
	border-radius: 4px;
}

.calVertical .day .timeslots  {
	border-top: 4px solid rgb(0,91,109);
	padding-top: 5px;
	padding-bottom: 5px;
	list-style-type: none;
}

.calVertical .day .slotToday {
	border-top: 4px solid rgb(246,160,0);
}

.calVertical .slotEmptyCall {
	display: none;
}


/* ************************************************* */


.calHorizontal .day {
	display: block;
	background-color: white;
	margin-bottom: 20px;
	padding-top: 5px;
	padding-bottom: 10px;
	border-radius: 4px;
}

.calHorizontal .calDayPast {
	display: none;
}

.calHorizontal .day p  {
	padding-left: 9px;
	padding-bottom: 2px;
}

.calHorizontal .day .timeslots {
	display: flex;
	flex-wrap: wrap;
}

.calHorizontal .timeslots {
	border-top: 2px solid rgb(0,91,109);
	padding-top: 5px;
}

.calHorizontal .slotToday {
	border-top: 2px solid rgb(246,160,0);
}

.calHorizontal .slotEmpty {
	flex-grow: 1;

	display: flex;
	justify-content: space-between;

	align-items: center;
	padding-right: 10px;
}

.calHorizontal .slotEmptyText {	
	flex-grow: 1;

	padding-left: 10px;
	padding-right: 10px;
}

.calHorizontal .slotEmptyCall {
	flex-grow: 0;

	padding-top: 7px;
	min-width: 2em;
	width: 2em;
}


/* ************************************************* */


/* Spalten der Blöcke */
@media (min-width: 0em) {
	.weekdays .calVertical{
		display: none;
	}
	.weekdays .calHorizontal {
		display: block;
	}
	.calendarview > .message > .message-footer {
		display: flex;
	}
}

@media (min-width: 39em) {
	.weekdays .calVertical {
		display: flow-root;
	}
	.weekdays .calHorizontal {
		display: none;
	}
	.calendarview > .message > .message-footer {
		display: none;
	}
}

