html, body {
  height: 100%;
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
  padding-top: 0px; /* Abstand Header nach oben */
  background-color: #1b1b1b;
  color: white;
}


.languages_content{
	width: 70%;
	margin-top: 50px;
	margin-left: auto;
	margin-right: auto;
    margin-bottom: 50px;
	color: white;
	background: #242424;;
	border-radius: 10px;
	box-shadow: 0 0 50px #8b1919;
	border: solid #8b1919 1px;
    text-decoration: none;
}
.languages_title{
    text-align: center;
	margin-top: 15px;
    width: 100%;
}
.languages_linie {
	margin-top: 20px;
	margin-left: auto;
	margin-right: auto;
	width: 98%;
	color: #393939;
	height: 1px;
	border-bottom: 2px solid #e4e4e4;	
}

.languages_logo {
    content: url(../img/OrdinalLabs.png);
    width: 300px;
    height: 300px;
    margin-left: auto;
    margin-right: auto;
	margin-top: 10px;
	margin-bottom: 10px;
}

.languages_text {
    text-align: center;
    margin-left: 10px;
    margin-right: 10px;
	margin-top: 10px;
	margin-bottom: 10px;
    font-size: 26px;
}
.languages_text a {
    text-decoration: none;
	color: white;
}

.language_select {
    width: 60%;
    padding: 10px;
    margin-top: 20px;
    font-size: 18px;
    border-radius: 5px;
    border: 1px solid #8b1919;
    background-color: #1b1b1b;
    color: white;
    appearance: none; /* Entfernt Standard-Pfeil */
    -webkit-appearance: none;
    -moz-appearance: none;

    /* 🟢 Text-Zentrierung */
    text-align: center;
    text-align-last: center; /* Wichtig für die ausgewählte Option */

    /* Pfeil entfernen */
    background-image: none;

    cursor: pointer;
}

.language_select option {
    background-color: #242424;
    color: white;
}

.language_button {
    margin-top: 0px;
    padding: 10px 50px;
    font-size: 18px;
    color: white;
    background-color: #8b1919;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.language_button:hover {
    background-color: #a32020;
}

.cookie_info {
    margin-top: 15px;
    font-size: 20px;
    color: #bbbbbb;
    text-align: center;
}


footer {
  height: 60px;
  background-color: #222;
  color: white;
  text-align: center;
  line-height: 60px;
}
