body {
	font-family: sans-serif;
	margin: 0;
	padding: 0;
	background: #1e2f26;
	color: #f8f8f2;
}

header {
	text-align: center;
	padding: 3em 1em;
	background-color: #2a3f33;
}

.header-flex {
	display: flex;
	align-items: flex-start;
	gap: 2em;
	max-width: 1000px;
	margin: auto;
	padding: 2em 1em;
	flex-wrap: wrap; /* Für kleine Bildschirme */
}

.header-flex img {
	width: 300px;
	height: auto;
	flex-shrink: 0;
}

.header-text {
	flex: 1;
	min-width: 250px;
}

@media (max-width: 600px) {
	.header-flex {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.header-text {
		text-align: center;
	}
}


header h1 {
	margin-bottom: 0.5em;
	color: #f5a623;
}

.download-button {
	display: inline-block;
	margin-top: 1em;
	padding: 0.75em 1.5em;
	background-color: #e07a2c;
	color: white;
	text-decoration: none;
	border-radius: 5px;
	font-weight: bold;
	transition: background-color 0.3s ease;
}

.download-button:hover {
	background-color: #f5a623;
}

main {
	padding: 2em;
	max-width: 1000px;
	margin: auto;
}

.entry {
	display: flex;
	align-items: center;
	gap: 2em;
	margin-bottom: 2em;
	flex-direction: row;
}

.entry.reverse {
	flex-direction: row-reverse;
}

.entry img {
	width: 300px;
	height: auto;
	border-radius: 10px;
	border: 2px solid #e07a2c;
}

.entry-text {
	max-width: 400px;
}

.entry-text h3 {
	margin-top: 0;
	margin-bottom: 0.5em;
	color: #f5a623;
}

.tp-command {
	display: inline-block;
	background: #2f2f2f;
	padding: 0.4em 0.6em;
	border-radius: 4px;
	font-family: monospace;
	font-size: 0.95em;
	color: #9fdf9f;
	cursor: pointer;
	position: relative;
}

.tp-command.copied::after {
	content: "✔️ Kopiert!";
	position: absolute;
	top: -1.8em;
	left: 0;
	font-size: 0.8em;
	color: #7fff7f;
}

footer {
	text-align: center;
	padding: 1em;
	background-color: #2a3f33;
	font-size: 0.9em;
	color: #aaa;
}
#lightbox {
	position: fixed;
	top: 0; left: 0;
	width: 100%; height: 100%;
	background: rgba(0,0,0,0.8);
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 1000;
}

#lightbox img {
	max-width: 90%;
	max-height: 90%;
	border: 4px solid white;
	border-radius: 10px;
}

