body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4; /* Auskommentieren, falls ein Hintergrundbild eingebunden wird */
    background-image: url('iStock-946210052_L.jpg');
    background-size: cover;
    background-position: center; /* Bild wird horizontal und vertikal zentriert */
    background-repeat: no-repeat; /* Bild wird nicht wiederholt */
    background-attachment: fixed; /* Bild bleibt feststehend beim Scrollen */
    margin: 0;
    padding: 0;
    /* display: flex; */
    /* display: block; */
    /* justify-content: center; */
    /* align-items: center; */
    /* height: 100vh; */
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  background-color: #333;
  color: white;
  padding: 0;
}

.navbar-left, .navbar-right {
	display: flex;
}

.navbar-right {
	justify-content: flex-end; /* Elemente rechts ausrichten */
}

.navbar a {
    float: left; /* NEU */
    font-size: 16px; /* NEU */
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

/* The dropdown container */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown button */
.dropdown .dropbtn {
    font-size: 16px;
    border: none;
    outline: none;
    color: white;
    text-align: center;
    padding: 14px 16px;
    background-color: inherit;
    font-family: inherit; /* Important for vertical align on mobile phones */
    /* margin: 0; *//* Important for vertical align on mobile phones */
}

.navbar-btn {
    float: left; /* NEU */
    font-size: 16px; /* NEU */
    border: none;
    outline: none;
    background-color: #333;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;	
}

/* Add a red background color to navbar links on hover */
.navbar a:hover, .dropdown:hover .dropbtn, .navbar-btn:hover {
    background-color: red;
}

/* 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: 1;
}

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

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

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
    display: block;
}

.navbar-label {
    float: left; /* NEU */
    font-size: 16px; /* NEU */
	font-weight: normal;
    border: none;
    outline: none;
    background-color: #333;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;	
}

.maincont {
	margin-top: 46px; /* Margin oben, 46px da NavBar fixiert */
	padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;
}

h1 {
    text-align: center;
    margin-bottom: 6px;
    padding: 8px;
    background-color: #f2f2f2;
}

h2 {
    font-size: 18px;
	text-align: center;
    margin-top: 0px;
	margin-bottom: 6px;
    padding: 8px;
    background-color: #f2f2f2;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
}

label {
    font-weight: bold;
}

input[type="text"],
input[type="number"],
input[type="date"],
input[type="password"],
input[type="submit"] {
	width: 80%;
    padding: 10px;
    /* margin-bottom: 15px; */
    border: 1px solid #ccc;
    border-radius: 5px;
}

input[type="submit"] {
    background-color: #204F79; /* #007bff; */
    border: none;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s;
}

input[type="submit"]:hover {
    background-color: #0ad6b3; /* #0056b3; */
}

/* TABLE */
table {
    font-size: 14px;
	border-collapse: collapse;
    width: 100%;
}

th, td {
    padding: 8px;
    text-align: left;
}

th {
    background-color: #f2f2f2;
}

td {
    background-color: rgba(255, 255, 255, 0.8); /* Weiß mit 20% Transparenz */
}

tr:first-child th:first-child {
    border-top-left-radius: 5px;
}

tr:first-child th:last-child {
    border-top-right-radius: 5px;
}

tr:last-child td:first-child {
    border-bottom-left-radius: 5px;
}

tr:last-child td:last-child {
    border-bottom-right-radius: 5px;
}

/* CANVAS */
canvas {
	background-color: #fff;
    padding: 8px;
    background-color: #f2f2f2;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
}

/* IMAGES */ /* CURRENTLY NOT NEEDED */
img {
		width: 100%;
		/* height: auto; */
}

/* SVGs */
.hoverable:hover {
	fill: red;
	opacity: 0.4;
}