body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 700px;
    margin: 0;
	background-color: #f0f0f0;
	background-image: url('images/Designer1.jpg'); 
	background-repeat: no-vertical; 
	background-position: center; 
	background-size: cover; 
}

menuicons {
	width: 36px;
	height: 36px;
	background-size: cover;
	color: #f0f0f0;
    padding: 10px;
	display: block;
}

.iconhome {
	width: 36px;
	height: 36px;
	background-size: 100%;
	background-color: #b0b0b0;
	background-image: url('images/home.png');
    border-radius: 5px;
}

.iconperso {
	width: 36px;
	height: 36px;
	background-image: url('images/perso.png');
	background-size: cover;
	background-color: #b0b0b0;
    border-radius: 5px;
}

.iconsettings {
	width: 36px;
	height: 36px;
	background-image: url('images/settings.png');
	background-size: cover;
	background-color: #b0b0b0;
    border-radius: 5px;
}

.container {
    text-align: center;
    max-width: 400px;
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
	padding-top: 200px;
}

.board {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 5px;
    margin-bottom: 20px;
}

.board div {
    width: 100%;
    padding-top: 100%;
    position: relative;
    background-color: #fff;
    font-size: 2em;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    border: 2px solid #ccc;
    border-radius: 5px;
}

.board div.active {
    border: 2px solid blue;
}

.board div span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    backface-visibility: hidden;
}

.board div.correct {
    background-color: green;
}

.board div.present {
    background-color: yellow;
}

.board div.absent {
    background-color: gray;
}

.board div.flip {
    animation: flip 0.6s;
}

@keyframes flip {
    0% {
        transform: rotateX(0deg);
    }
    50% {
        transform: rotateX(90deg);
    }
    100% {
        transform: rotateX(0deg);
    }
}

.keyboard {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 2px;
}

.keyboard button {
    padding: 5px;
    font-size: 1em;
    cursor: pointer;
    border: 1px solid #ccc;
    background-color: #fff;
}

button {
    width: 100%;
    padding: 5px;
    margin-top: 3px;
    font-size: 1em;
    cursor: pointer;
    border: 2px solid #ccc;
    border-radius: 5px;
}

button.correct {
    background-color: green;
    color: white;
}

button.present {
    background-color: yellow;
    color: black;
}

button.absent {
    background-color: gray;
    color: white;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    text-align: center;
    padding: 15px;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-banner p {
    margin: 0;
    flex-grow: 1;
}

.cookie-banner a {
    color: #f1c40f;
    text-decoration: underline;
}

.cookie-banner button {
    background-color: #f1c40f;
    color: black;
    border: none;
    padding: 10px 20px;
    margin-left: 10px;
    cursor: pointer;
    font-size: 14px;
}

.cookie-banner button:hover {
    background-color: #d4ac0d;
}



 /* Navbar container */
.navbar {
	background-color: rgba(128,128,128, 0.5);
	position: fixed;
	top: 0;
	padding: 5px;
	border-radius: 5px;
	z-index: 1000;
}
.navbar a {
	float: left;
	display: block;
	color: white;
	text-align: center;
	padding: 14px 16px;
	text-decoration: none;
}

.navbar a:hover {
	background-color: #ddd;
	color: black;
}
.dropdown {
	float: left;
	/*overflow: hidden;*/
}
.dropdown .dropbtn {
	font-size: 16px;
	border: none;
	outline: none;
	color: white;
	padding: 14px 16px;
	background-color: inherit;
	font-family: inherit;
	margin: 0;
}
.dropdown-content {
	display: none;
	position: absolute;
	background-color: #f9f9f9;
	min-width: 160px;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}
.dropdown-content a {
	float: none;
	color: black;
	padding: 12px 16px;
	text-decoration: none;
	display: block;
	text-align: left;
}

.dropdown-content a:hover {
	background-color: #ddd;
}
.dropdown:hover .dropdown-content {
	display: block;
}
.dropdown:hover .dropbtn {
	background-color: #ddd;
	color: black;
}

table.spielergebnisse {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 18px;
    text-align: left;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

table.spielergebnisse thead tr {
    background-color: #4CAF50;
    color: white;
    text-align: left;
}

table.spielergebnisse th {
    padding: 12px 15px;
    border-bottom: 1px solid #ddd;
}

 table.spielergebnisse td {
	text-align: left;
 }
 
table.spielergebnisse tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

table.spielergebnisse tbody tr:hover {
    background-color: #f1f1f1;
}

/* Schieberegler-Stil */
.switch-container {
	float: none;
	color: black;
	padding: 12px 16px;
	text-decoration: none;
	display: block;
	text-align: left;
	/*
    display: flex;
    align-items: center;
	*/
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 20px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 20px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 17px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: green;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

/* Rundschieberegler */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}


.mailto-link img {
	width: 20px;  /* Setzen Sie die gewünschte Breite */
	height: auto; /* Automatische Höhe im Verhältnis zur Breite */
}
.footer {
    width: 100%;
	margin: 50px;
}