body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

header {
    background-color: #f0f0f0;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    width: 250px;
    height: auto;
}

.contact-info {
    text-align: right;
    font-size:18px;
}

.navigation {
    background-color: #007bff;
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.navigation li {
    float:left;
    position: relative;
}

.navigation a {
    display: block;
    width: 100%;
    text-decoration: none;
    color: white;
    background-color: #007bff;
    padding: 14px 16px;
    font-size: 20px;
    font-weight: bold;
    transition: background-color 0.3s;
}
.navigation a:hover {
    background-color: #0088ff;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    display:none;
    min-width: 100%;
    padding: 12px 16px;
    background-color: #f9f9f9;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 2;


}
.dropdown-content a {
    display: block;
    text-decoration: none;
    color: white;
    background-color: white;
    padding: 14px 16px;
    font-size: 20px;
    font-weight: bold;
    transition: background-color 0.3s;
}
.dropdown:hover .dropdown-content {
    display: block;
}

.sub-dropdown-content a {display: block; color: black; text-align: left; padding: 8px 12px; text-decoration: none;}


.sub-dropdown {
    position: relative;
    display: inline-block; }


.sub-dropdown-content {
    display: none;
    position: absolute;
    top:0;
    left: 100%;
    min-width: 100px;
    background-color: #f9f9f9;  
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index:2;
}

.sub-dropdown:hover  .sub-dropdown-content {
    display: block; }

.sub-sub-dropdown{
    position:relative; 
    display:inline-block;}

.sub-sub-dropdown-content {
	display: none; 
	position:absolute;
	top: 0;
	left:100%;
	min-width: 100px;
  	background-color: #f9f9f9;  
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	z-index:2; 
}

.sub-sub-dropdown:hover .sub-sub-dropdown-content {
	display: block;
}


.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color:#007bff;
}

.zentriert {
	text-align: center;
}

.rechteck-container {
    display: flex;
    justify-content:center;
  }

.rechteck {
    width: 300px;
    padding: 20px;
    margin: 20px;
    border: 2px solid #ccc;
    position: relative;
    background-color: #fff;
    transition: background-color 0.3s;
  }
  
  .rechteck img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 10px;
    transition: transform 0.3s;
  }
  
  .rechteck h2 {
    margin-top: 0;
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
  }

  .rechteck .details {
    color: blue;
    font-style: italic;
    position: absolute;
    bottom: 10px;
    left: 20px;
    display: none;
  }
  

  .rechteck ul {
    margin-top: 10px;
    padding-left: 20px;
  }
  

  .rechteck:hover {
    background-color: #f0f0f0;
  }
  
  .rechteck:hover img {
    transform: scale(1.1);
  }
  
  .rechteck:hover .details {
    display: block;
  }

.rechteck ul li {
  text-decoration: none;
}

table {
  width: 100%;
  border-collapse: collapse;
  max-width: 800px;
  margin: 0 auto;
}

.th {
    font-weight: bold;
    text-align: center;
}

th, td {
    border: 1px solid #dddddd;
    padding: 10px;
    text-align: left;

}

tr:nth-child(even) {
background-color: #f2f2f2;
}