html {
	background-color: black;
	color: white;
	margin: 0 auto;
	padding: 0 auto;
}

body {
	font-family: "Helvetica Neue";
	margin: 0 auto;
	padding: 50px;
	font-size: 16px;
	overflow: visible;
}

a:link, a:visited, button, button:visited {
	border: none;
	cursor: pointer;
	color: white;
	text-decoration: none;
}

a:hover, a:active, button:hover, button:active {
	border: none;
	cursor: pointer;
	color: white;
	text-decoration: underline;
}

button {
	background-color: transparent;
	font-size: medium;
	padding: 0;
}

.listHead {
	display: flex;
	flex-direction: row;
	align-items: center;
}

.listImage {
	margin-right: 25px;
}

.listHeadTextContent {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.listTitle {
	font-size: 45px;
	font-weight: bold;
}

.listCounter {
	
}

.listSection {
	margin-top: 30px;
}

.listSectionTitle {
	font-size: 25px;
	font-weight: bold;
	margin-bottom: 15px;
}

.listItem {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 15px;
}

.listItemImage {
	border-radius: 3px;
}

.listItemContent {
	display: flex;
	flex-direction: column;
	gap: 8px
}

.listItemTitle {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
	text-overflow: ellipsis;
}

.listItemText {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
	overflow: hidden;
	text-overflow: ellipsis;
}

.listItemSubtitle {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
	text-overflow: ellipsis;
}

.listItemDivider {
	background-color: rgba(255, 255, 255, 0.1);
	height: 1px;
	width: 100%;
	margin-top: 15px;
	margin-bottom: 15px;
}

#sideBar {
	position: fixed;
	left: 50px;
	top: 50px;
	bottom: 50px;
	width: 160px;
	backdrop-filter: blur(10px); /* Stärke des Blur-Effekts */
	-webkit-backdrop-filter: blur(10px);
	background-color: rgba(50, 50, 50, 0.5);
	border-radius: 15px;
	border-color: rgba(255, 255, 255, 0.1);
	border-width: 1px;
	border-style: solid;
	display: flex;
	flex-direction: column;
	padding: 15px;
	z-index: 999;
}

.sideBarButton, .selectedBarButton {
	display: flex;
	flex-direction: row;
	gap: 10px;
	background-color: transparent;
	align-items: center;
	border-radius: 6px;
	padding: 10px;
}

.sideBarButtonLabel {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
	text-overflow: ellipsis;
}

.sideBarButton:hover, .selectedBarButton {
	background-color: rgba(0, 0, 0, 0.2);
}

.sideBarButton:active, .selectedBarButton:active {
	background-color: rgba(0, 0, 0, 0.5);
}

.sideBarDivider {
	height: 1px;
	width: 100%;
	background-color: rgba(255, 255, 255, 0.1);
	margin-top: 10px;
	margin-bottom: 10px;
}

#searchContainer {
	display: flex;
	flex-direction: row-reverse;
	align-items: center;
	width: 100%;
}

#searchField {
	border-radius: 16.5px;
	border-style: none;
	font-size: 15px;
	padding-left: 35px;
	background-color: rgba(67, 67, 67, 1);
	color: white;
	width: 100%;
	height: 33px;
}

#searchIcon {
	margin-right: -26px;
	margin-left: auto;
}

.section {
	padding-bottom: 15px;
	display: flex;
	flex-direction: column;
	overflow: visible;
}

.section .sectionTitle {
	margin-top: 15px;
	margin-bottom: 15px;
	font-size: 25px;
	font-weight: bold;
}

.scrollingRow {
	display: flex;
	flex-direction: row;
	overflow-x: auto;
	margin-left: -290px;
	margin-right: -50px;
	padding-left: 290px;
	padding-right: 50px;
	gap: 15px;
}

.scrollingRow::-webkit-scrollbar {
	display: none;
}

.breakingRow {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 15px;
}

.mediaItem {
	display: flex;
	flex-direction: column;
}

.mediaItem a img:hover, .listItem a .listItemImage:hover {
	filter: brightness(70%);
}

.mediaItem a img:active, .listItem a .listItemImage:active {
	filter: brightness(50%);
}

.mediaPoster {
	display: flex;
	color: rgba(255, 255, 255, 0)
}

.mediaPoster img {
	border-radius: 5px;
}

.mediaTitle {
	margin-top: 4px;
	width: 200px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.mediaSubtitle {
	margin-top: 3px;
	width: 200px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	color: gray;
}

.personItem {
	display: flex;
	flex-direction: column;
}

.personItem img:hover {
	filter: brightness(70%);
}

.personItem img:active {
	filter: brightness(50%);
}

.personPoster {
	display: flex;
	color: rgba(255, 255, 255, 0)
}

.personPoster img {
	border-radius: 64px;
	object-fit: cover;
}

.personTitle {
	margin-top: 4px;
	width: 128px;
	text-align: center;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	text-overflow: ellipsis;
}

.personSubtitle {
	margin-top: 3px;
	width: 128px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	color: gray;
	text-align: center;
	-webkit-line-clamp: 1;
}

#loginContainer, #impressumContainer {
	width: 350px;
	margin: 0 auto;
	margin-top: 100px;
	padding: 25px;
	background-color: rgba(28, 28, 28, 1);
	border-radius: 15px;
	border-color: rgba(255, 255, 255, 0.1);
	border-width: 1px;
	border-style: solid;
	display: flex;
	flex-direction: column;
}

#impressumContainer label {
	font-size: 16px;
}

.tableBackground {
	background-color: rgba(28, 28, 28, 1);
	border-radius: 9px;
	overflow: visible;
	padding: 0 15px;
	display: inline-block;
}

table {
	border-collapse: collapse;
	border-style: none;
	margin: 0;
	text-align: right;
}

table .textInput {
	text-align: right;
}

tr {
	border-top: 1px solid rgba(255, 255, 255, 0.05);
}

tr:first-child {
	border-top: none;
}

tr td:first-child,  tr td:first-child .textInput {
	text-align: left;
}

tr td:last-child {
	padding-right: 0;
}

td {
	padding: 12px 0;
	padding-right: 25px;
	border-style: none;
}

#impressumContainer #impressumTitle {
	font-size: 25px;
	font-weight: bold;
	text-align: center;
	margin-top: 35px;
	margin-bottom: 35px;
}

#impressumContainer a {
	margin-left: auto;
	margin-right: auto;
	margin-top: 35px;
}

#loginContainer #errorLabel {
	color: red;
}

#loginAppIcon, #impressumAppIcon {
	margin: 0 auto;
	margin-top: 10px;
}

.textInput {
	-moz-appearance: textfield;
	display: block;
	border-radius: 9px;
	border-style: none;
	font-family: "Helvetica Neue";
	font-size: 15px;
	padding: 12px 15px;
	background-color: transparent;
	color: white;
	width: 100%;
	resize: none;
	margin-left: -15px;
	margin-right: -15px;
	margin-top: -12px;
	margin-bottom: -12px;
	width: calc(100% + 30px);
	box-sizing: border-box;
	border-color: red;
	outline-color: none;
}

.textInput::-webkit-inner-spin-button, .textInput::-webkit-outer-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.dateInput {
	font-family: "Helvetica Neue";
	font-size: 15px;
	color: white;
	background-color: rgba(67, 67, 67, 1);
	border-style: none;
	border-radius: 9px;
	padding: 6px 9px;
}

.selectInput {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	font-family: "Helvetica Neue";
	font-size: 15px;
	color: white;
	background-color: rgba(67, 67, 67, 1);
	border-style: none;
	border-radius: 9px;
	padding: 6px 9px;
}

.numberInput {
	-moz-appearance: textfield;
	font-family: "Helvetica Neue";
	font-size: 15px;
	color: white;
	background-color: rgba(67, 67, 67, 1);
	border-style: none;
	border-radius: 9px;
	padding: 6px 9px;
	width: 60px;
	text-align: right;
}

.hiddenCheckbox {
	visibility: hidden;
	position: absolute;
	width: 0;
	height: 0;
	margin: 0;
	padding: 0;
}

.checkboxInput {
	display: inline-block;
	width: 25px;
	height: 25px;
	margin: 0;
	padding: 0;
	border-radius: 50%;
	background-image: url('resources/uncheckedIcon.pdf');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

td .hiddenCheckbox:checked + .checkboxInput {
	background-image: url('resources/checkedIcon.pdf');
}

tr:active .checkboxInput {
	filter: brightness(70%);
}

input:focus, textarea:focus, select:focus, .dropdownInput:active, .dropdownInput:focus {
	outline: none;
	outline-style: solid;
	outline-width: 3px;
	outline-color: rgba(235, 148, 50, .5);
	outline-offset: 0px;
	caret-color: rgba(235, 148, 50, 1);
}

.dropdownInput {
	display: inline-block;
	background-color: rgba(67, 67, 67, 1);
	border-style: none;
	border-radius: 9px;
	padding: 6px 9px;
}

.tableSubtitle {
	font-size: 13px;
	margin-top: 15px;
	margin-left: 15px;
	margin-right: 15px;
}

#mediaDetailHead {
	display: flex;
	flex-direction: row;
}

.mediaDetailPoster {
	border-radius: 5px;
}

#mediaDetailRight {
	display: flex;
	flex-direction: column;
	margin-left: 25px;
	max-height: 300px;
}

#mediaTitle {
	font-size: 45px;
	font-weight: bold;
	margin-bottom: 10px;
}

#mediaPlot {
	line-height: 21px;
	margin-top: 15px;
	overflow: hidden;
	margin-bottom: auto;
}

#searchTitle {
	font-size: 45px;
	font-weight: bold;
	margin-bottom: 15px;
}

#truncatingLayover {
	height: 30px;
	min-height: 30px;
	margin-top: -30px;
	margin-bottom: 8px;
	width: 100%;
	z-index: 999;
	background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%);
}

.rectangleButton, .highlightedRectangleButton {
	background-color: rgba(28, 28, 28, 1);
	padding: 12px;
	padding-left: 20px;
	padding-right: 20px;
	border-radius: 9px;
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 10px;
}

.highlightedRectangleButton {
	background-color: rgba(255, 148, 0, 1);
}

.rectangleButton label, .highlightedRectangleButton label {
	font-size: 15px;
}

#buttonSection {
	margin-top: 0;
	margin-bottom: 0;
	width: 100%;
	padding: 0;
}

.navDivider {
	background-color: rgba(255, 255, 255, 0.2);
	width: 1px;
	height: 20px;
}

.emptyContent {
	margin-top: 30px;
}