@font-face {
    font-family: Mulish;
    src: url(./font/mulish/Mulish-Light.ttf);
}

body {
    font-family: Mulish, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    margin: 0;
    padding: 0;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

nav {
    display: flex;
    text-decoration: none;
    justify-content: space-between;
    align-items: center;
    padding: 25px 20px;
    background-color: #ffffff;
    color: rgb(0, 0, 0);
    border-bottom: 2px solid rgba(0, 0, 0, 0.175);
}

.nav-left {
    text-decoration: none;
    color: black;
    display: flex;
    align-items: center;
}

.nav-back {
    text-decoration: none;
    color: black;
}

.nav-back:hover {
    text-decoration: underline;
}

.nav-left i {
    margin-right: 5px;
}

.nav-center img {
    height: 40px;
    margin-left: 15%;
}

.nav-right {
    text-decoration: none;
    width: 40px;
    padding-right: 4%;
}


.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: #ffffff;
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border: 1px solid rgba(0, 0, 0, 0.175);
    border-radius: 5px;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
    display: block;
}

h2.ortselect {
    text-align: center;
    font-size: 40px;
    color: #000000;
}

.changelog-entry {
    background: white;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.changelog-entry h3.ort {
    font-size: 20px;
    margin-top: 0;
    color: #000000;
}

form {
    margin: 20px;
    text-align: center;
}

select {
    padding: 10px 55px;
    font-size: 16px;
    border: 2px solid #333;
    border-radius: 5px;
    background-color: white;
    color: #333;
    appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%204%205%22%3E%3Cpath%20fill%3D%22%23000%22%20d%3D%22M2%200L0%202h4L2%200zM2%205L0%203h4L2%205z%22/%3E%3C/svg%3E');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 10px;
}

select:hover {
    border-color: #555;
}

select:focus {
    outline: none;
    border-color: #666;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

textarea {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 2px solid #333;
    font-size: 16px;
}

button {
    background-color:  grey;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    color: #000000;
}

.info-field {
    background-color: #f0f0f0; /* Hellgraue Hintergrundfarbe */
    color: #333333; /* Dunkelgraue Schriftfarbe */
    padding: 20px;
    margin-bottom: 20px;
    font-family: Arial, sans-serif;
    display: flex;
    flex-wrap: wrap;
    height: 210px;
    gap: 20px;
    border: 1px solid #e0e0e0; /* Optional: Rahmen, um das Feld hervorzuheben */
    position: relative; /* Ermöglicht die absolute Positionierung der Bilder */
  }
  
  .info-section {
    flex: 1;
    margin-top: 0.5%;
    min-width: 200px;
    position: relative; /* Ermöglicht die absolute Positionierung der Bilder innerhalb dieses Containers */
  }
  
  .info-section h3 {
    margin: 0 0 10px 0;
    font-size: 18px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 5px;
  }
  
  .info-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .info-section ul li {
    margin: 5px 0;
  }
  
  .logocard {
    position: absolute;
    bottom: 10px; /* Abstand vom unteren Rand */
    left: 50%; /* Positionierung in der Mitte */
    transform: translateX(-50%); /* Zentrierung des Bildes */
    max-width: 140px; /* Begrenzung der Bildgröße */
    max-height: 100px; /* Begrenzung der Bildhöhe */
  }
  
  .logocardtext{
    position: absolute;
    bottom: -11px; /* Abstand vom unteren Rand */
    left: 55%; /* Positionierung in der Mitte */
    transform: translateX(-50%); /* Zentrierung des Bildes */
    max-width: 500px; /* Begrenzung der Bildgröße */
    max-height: 100px; /* Begrenzung der Bildhöhe */
    font-size: 18px;
    color: rgb(0, 0, 0);
  }
  
  
  footer{
    margin-top: 1%;
    height: 5s0px;
    text-align: center;
    font-size: 20px;
  
  }

  .no{
    color: #00000000;
  }