body {
	background-color: rgb(36, 36, 36);
}

.vorwiki {
	font-size: 24px;
	color: white;
}

.float-child {
	float: left;
	font-size: 22px;
	color: white;
	border-right-width: 6px;
	border-right-style: solid;
	border-right-color: #c8c8c8;
	text-align: center;
	width: 49%;
}

.float-childr {
	float: left;
	font-size: 22px;
	color: white;
	text-align: center;
	width: 49%;
}

.danach {
	height: 6px;
	background: #c8c8c8;
	position: relative;
	top: -2px;
	z-index: -1;
}

#mapslink {
	text-decoration: none;
	margin-left: 50px;
}

#mapslink2 {
	text-decoration: none;
	margin-left: 50px;
}

.mapskits {
	font-size: 36px;
	color: white;
	font-weight: bold;
}

.mapskits:hover {
	color: #f4b156;
	background: none;
	transition: all 0.3s;
}

.wikikitsimg {
	width: 262px;
	height: 161px;
	padding: 4%;
	border: 1px solid gray;
	border-radius: 10px;
}

.wikikitsimghandy {
	width: 90%;
	height: 40%;
	padding: 4%;
	border: 1px solid gray;
	border-radius: 10px;
}

/* Alex zeug */

.textalertstartleft {
	font-size: 24px;
	color: white;
	font-weight: bold;
	align-content: start;
}

@keyframes fade_in_show {
	0% {
		opacity: 0;
		transform: scale(0);
	}

	100% {
		opacity: 1;
		transform: scale(1);
	}
}

.widthfull {
	width: 100%;
}

@media (max-width: 768px) {
	.C {
		display: none;
	}

	.H {
		display: block;
	}
}

/*
maps.php Style NEU, Nico
*/
.mapGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.bild-container {
    position: relative;
    width: 45vw;
    margin: auto;
    padding: 10px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.aktuelleMap {
    grid-column: span 2;
}

.bild-container img {
    width: 100%;
    display: block;
    transition: transform 0.4s ease;
}

.titel-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 50px 20px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
    color: white;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.titel-overlay h2 {
    margin: 0;
    font-size: 1.75rem;
}

.aktuelleMap .titel-overlay {
    opacity: 1;
    transform: translateY(0);
}

.aktuelleMap img {
    transform: scale(1.05);
}

.bild-container:hover .titel-overlay {
    opacity: 1;
    transform: translateY(0);
}

.bild-container:hover img {
    transform: scale(1.05);
}

@media (max-width: 600px) {
    .aktuelleMap {
        grid-column: span 1;
    }

    .mapGrid {
        grid-template-columns: 1fr;
    }

    .bild-container {
        width: 90vw;
    }
}

/*
stats.php Style NEU, Nico
*/

.fehlerStats {
	font-size: 24px;
	grid-column: span 2;
	color: rgb(255, 124, 124);
}

.besteSpieler {
	margin: auto;
	text-align: center;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
	padding: 20px;
	color: white;
	background: rgb(36, 36, 36);
}

.inputName {
	font-size: 16px;
	padding: 12px 15px;
	color: #FFFFFF;
	background-color: #2D2D2D;
	border: 2px solid #555555;
	border-radius: 8px;
	outline: none;
	transition: border-color 0.3s ease;
}

.inputName:focus,
.inputName:hover {
	border-color: #007BFF;
}

.inputName::placeholder {
	color: #AAAAAA;
}

.buttonSuche {
	font-size: 16px;
	font-weight: bold;
	padding: 14px 25px;
	color: #FFFFFF;
	background-color: #007bff;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	transition: background-color 0.3s ease, transform 0.1s ease;
}

.buttonSuche:hover {
	background-color: #004ea1;
}

.buttonSuche:active {
	transform: scale(0.98);
}

.playerstatslink {
	color: rgb(0, 247, 255);
}

.playerstatslink:visited {
	color: rgb(0, 247, 255);
}

.playerstatslink:hover {
	color: white;
	background-color: rgb(36, 36, 36);
}

.gridChildStats {
    grid-column: span 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gridChildStats table {
	width: 50%;
	border-collapse: collapse;
	font-size: 24px;
}

.gridChildStats th,
.gridChildStats td {
	border: 1px solid white;
	color: white;
	padding: 8px;
}

.playerstats {
	color: white;
}

.profilbild-mitte {
	margin: auto;
}

.profilbild {
	width: 20px;
}

@media (min-width: 801px) {
	.da {
		display: none;
	}
}

@media (max-width: 1100px) {
	.gridChildStats table {
		font-size: 16px;
	}

	.besteSpieler {
		grid-template-columns: 1fr;
	}

	.gridChildStats {
		grid-column: span 1;
	}

	.weg {
		display: none;
	}
}

@media (max-width: 800px) {
	.gridChildStats table {
		width: 100%;
	}
}

/*
Kits.php Style NEU, Nico:
*/

.gridKits {
	display: grid;
	text-align: center;
	grid-template-columns: 1fr 1fr 1fr;
}

.gridChild {
	padding-top: 2vh;
}

.uberschriftkit {
	font-size: 36px;
	font-weight: bold;
	color: white;
}

.wikikitsimg {
	transition: 0.5s ease;
	opacity: 0.3;

	width: 50%;
	height: auto;

	filter: blur(1px);
}

.wikikitsimg:hover {
	opacity: 1;
	filter: none;
	cursor: pointer;
}

@media (max-width: 992px) {
	.gridKits {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 600px) {
	.gridKits {
		grid-template-columns: 1fr;
	}
}

/*
Modal, ursprünglich von Alex, überarbeitet von Nico
*/

.modal {
	display: none;
	position: fixed;
	z-index: 1;
	left: 0;
	top: 5vh;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0, 0, 0, 0.4);
}

.modaltext {
	font-size: 24px;
	color: white;
	font-weight: bold;
	margin-right: 25px;
	display: block;
}



.modal-content {
	background-color: rgb(60, 60, 60);
	margin: 15% auto;
	padding: 20px;
	border: 1px solid rgb(60, 60, 60);
	border-radius: 25px;
	width: 50%;
	transition: 2s ease;
	opacity: 1;
	margin-top: 20%;
	animation: fade_in_show 0.5s;

	position: relative;
}

@media (max-width: 600px) {
	.modal-content {
		width: 75%;
	}
}

.close {
	position: absolute;
	top: -10px;
	/* 15px Abstand von oben */
	right: 15px;
	/* AUCH 15px Abstand von rechts (statt 20px) */

	color: #aaa;
	font-size: 48px;
	font-weight: bold;
}

.close:hover {
	color: black;
	text-decoration: none;
	cursor: pointer;
}