html {
	font-family: Verdana, Trebuchet, Arial, sans-serif;
	position: relative;
	height: 100%;
}

body {
	background-color: #fff;
	color: #34495e;
	text-align: center;
}

input[type="submit"] {
	text-decoration: none;
	cursor: pointer;
	position: relative;
}

table {
	width: 100%;
	background-color: #e8e8e8;
	border-collapse: collapse;
	border: none;
}

.table-container {
  max-height: calc(90svh); /* Anpassen nach Bedarf */
  overflow-y: auto;
  position: relative;
}

thead {
	background-color: #333;
	color: #fff;
	position: sticky;
	top: 0;
	z-index: 1;
}

td {
	padding: 0.3em 0.5em;
	border-bottom: 5px #000 solid;
	word-break:break-all;
	word-wrap:break-word;
}

.rotated-cell {
  -webkit-transform: rotate(270deg);
  -moz-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  -o-transform: rotate(270deg);
  transform: rotate(270deg);
}

th {
	padding: 0.3em 0.5em;
}

@media screen and (max-width: 700px) {
	.tablehead {
		float: left;
	}
}

button {
	text-decoration: none;
	cursor: pointer;
}

a {
	text-decoration: none;
}

.btn {
	position: relative;

	display: inline-block;
	margin: auto;
	padding: 10;
	text-decoration: none;

	font-size:1em;

	border-width: 0;
	outline: none;
	border-radius: 2px;
	box-shadow: 0 1px 4px rgba(0, 0, 0, .6);

	background-color: #4CAF50;
	color: white;

	transition: background-color .3s;
}

.btn:hover, .btn:focus {
  background-color: #2980b9;
}

.btn.blue {
  display: block;
  background-color: #2980b9;
}

.btn.green {
  display: block;
  background-color: #4CAF50;
}

.btn.orange {
  display: block;
  background-color: #ff7f00;
}

.btn.red {
  display: block;
  background-color: #e74c3c;
}

.btn.red.float {
	display: flex;
	.inline-buttons.align-right { text-align: right !important; }
}

.btn.orange.float {
	display: flex;
	.inline-buttons.align-right { text-align: right !important; }
}

.btn:before {
  content: "";
  
  position: absolute;
  top: 50%;
  left: 50%;
  
  display: block;
  width: 0;
  padding-top: 0;
    
  border-radius: 100%;
  
  background-color: rgba(236, 240, 241, .3);
  
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.btn:active:before {
  width: 120%;
  padding-top: 120%;
  
  transition: width .2s ease-out, padding-top .2s ease-out;
}

.footer {
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	color: white;
	text-align: center;
}

.footer.blue {
	background-color: #2980b9;
}

.footer.red {
	background-color: #e74c3c;
}

/* Add a black background color to the top navigation */
.topnav {
  background-color: #333;
  overflow: hidden;
}

/* Style the links inside the navigation bar */
.topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

/* Add an active class to highlight the current page */
.active {
  background-color: #4CAF50;
  color: white;
}

/* Hide the link that should open and close the topnav on small screens */
.topnav .icon {
  display: none;
}

/* Dropdown container - needed to position the dropdown content */
.dropdown {
  float: left;
  overflow: hidden;
}

/* Style the dropdown button to fit inside the topnav */
.dropdown .dropbtn {
  font-size: 17px; 
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

/* Style the dropdown content (hidden by default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1000;
}

/* Style the links inside the dropdown */
.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

/* Add a dark background on topnav links and the dropdown button on hover */
.topnav a:hover, .dropdown:hover .dropbtn {
  background-color: #555;
  color: white;
}

/* Add a grey background to dropdown links on hover */
.dropdown-content a:hover {
  background-color: #ddd;
  color: black;
}

/* Show the dropdown menu when the user moves the mouse over the dropdown button */
.dropdown:hover .dropdown-content {
  display: block;
}

/* When the screen is less than 700 pixels wide, hide all links, except for the first one ("Home"). Show the link that contains should open and close the topnav (.icon) */
@media screen and (max-width: 700px) {
  .topnav a:not(:first-child), .dropdown .dropbtn {
    display: none;
  }
  .topnav a.icon {
    float: right;
    display: block;
  }
}

/* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens (display the links vertically instead of horizontally) */
@media screen and (max-width: 700px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive a.icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
  .topnav.responsive .dropdown {float: none;}
  .topnav.responsive .dropdown-content {position: relative;}
  .topnav.responsive .dropdown .dropbtn {
    display: block;
    width: 100%;
    text-align: left;
  }
}

@media screen and (max-width:700px) {
	.RespTable, .RespTable thead, .RespTable tbody, .RespTable tr, .RespTable th, .RespTable td {
		display: block;
		border: 0px;
	}

	.RespTable {
		text-align: right;
	}

	.RespTable thead {
		position: absolute;
		top: -1111px;
		left: -1111px;
	}

	.RespTable td:before {
		float: left;
		padding: 0 10px 0 0;
		content: attr(data-label);
		font-weight: bold;
	}

	@media screen and (max-width:700px) {
		.RespTable td {
			text-align: right;
		}
	}

	.RespTable td:nth-child(1) {
		font-weight: bold;
	}

	.RespTable td:last-child {
		margin-bottom: 50px;
		border-bottom: 5px #000 solid;
	}

	.oddRow {
		background: #fff;
	}

	.oddCol {
		#background: #ff7f00;
		background: #515151;
		color: #fff;
	}
}

@media screen and (max-width: 700px) {
	.umbruch {
		position: absolute;
	}
}

details {
  width: 80%;
  margin: 0 auto ;
  background: #fff;
  margin-bottom: .5rem;
  box-shadow: 0 .1rem 1rem -.5rem rgba(0,0,0,.4);
  overflow: hidden;
}

summary {
  padding: 1rem;
  display: block;
  background: #333;
  padding-left: 2.2rem;
  position: relative;
  cursor: pointer;
  user-select: none;
}

summary:before {
  content: '';
  border-width: .4rem;
  border-style: solid;
  border-color: transparent transparent transparent #fff;
  position: absolute;
  top: 1.3rem;
  left: 1rem;
  transform: rotate(0);
  transform-origin: .2rem 50%;
  transition: .25s transform ease;
}

/* THE MAGIC 🧙‍♀️ */
details[open] > summary:before {
  transform: rotate(90deg);
}

details summary::-webkit-details-marker {
  display:none;
}

details > ul {
  padding-bottom: 1rem;
  margin-bottom: 0;
}

.form-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 500px; /* Passen Sie die maximale Breite nach Bedarf an */
  margin: 0 auto; /* Dies zentriert das Formular horizontal */
}

.form-row {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.form-label {
  flex: 0 0 30%; /* Passen Sie die Breite der Labels nach Bedarf an */
  text-align: right;
  padding-right: 10px;
}

.form-input {
  flex: 1;
}

