/* Allgemeine Stile */
body {
	font-family: Arial, sans-serif;
	color: white;
	margin: 0;
	padding: 0;
	background: black;
}
h1, h2 {
	text-align: center;
	line-height: 0%;
	--glow-color: rgba(123, 121, 121, 0.18);
	--glow-spread-color: rgba(117, 114, 114, 0);
	--enhanced-glow-color: rgb(215, 200, 230);
	--btn-color: rgb(198, 27, 27);
	border: .25em solid rgb(187, 37, 37);
	padding: 1em 3em;
	color: rgb(215, 8, 8);
	font-size: 22px;
	font-weight: bold;
	border-radius: 1em;
	outline: none;
	box-shadow: 0 0 1em .25em rgba(21, 21, 21, 0.09), 0 0 4em 1em rgba(96, 89, 89, 0.78), inset 0 0 .75em .25em rgba(9, 8, 8, 0.15);
	text-shadow: 0 0 .5em rgba(217, 10, 10, 0);
	position: relative;
	transition: all 0.3s;
	cursor: pointer;
	background: linear-Gradient(0deg, rgba(11,11,11,1) 3%, rgb(50, 47, 47) 50%, rgba(9,9,9,1) 98%);
}
.date-navigation a {
	padding: 10px;
	border: 1px solid #ccc;
	border-radius: 5px;
	text-decoration: none;
	background: linear-gradient(180deg, rgba(14,14,14,1) 22%, rgba(253,29,29,1) 50%, rgba(10,10,10,1) 82%);
	color: white;
}
.date-navigation a.active {
	color: #fff;
	background: linear-gradient(180deg, rgb(14, 14, 14) 22%, rgb(202, 200, 200) 50%, rgb(10, 10, 10) 82%);
}
a {
	font-size: 20px;
}
main {
	padding: 20px;
	background: linear-Gradient(0deg, rgba(11,11,11,1) 3%, rgb(50, 47, 47) 50%, rgba(9,9,9,1) 98%);
}

.container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #333;
    border-radius: 10px;
    border: 2px solid #555;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

/* Header */
header {
    background-color: #444;
    padding: 15px;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    border-bottom: 2px solid red;
}

nav {
    text-align: center;
    margin: 10px 0;
}

nav a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    margin: 0 15px;
    transition: color 0.3s;
}

nav a:hover {
    color: red;
}

/* Bild-Container */
.image-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.image-container img {
    max-width: 45%;
    height: auto;
    border: 2px solid red;
    border-radius: 10px;
}

/* Formular-Stile */
form {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 20px;
	background-color: black;
}

input, textarea, select, button {
    width: 90%;
    max-width: 400px;
    padding: 10px;
    margin: 5px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
}

input, textarea, select {
    background-color: #444;
    color: white;
    border: 1px solid #555;
}

button {
	background-color: red;
	color: white;
	cursor: pointer;
	transition: background-color 0.3s ease;
	border: 1px solid darkred;
}

button:hover {
    background-color: darkred;
}

/* Tabelle-Stile */
table {
    width: 100%;
    margin-top: 20px;
    border-collapse: collapse;
    background-color: #333;
    border-radius: 10px;
    border: 2px solid #555;
    overflow: hidden;
}

th, td {
    padding: 10px;
    border: 1px solid #555;
}

th {
    color: white;
    background: linear-gradient(180deg, rgb(50, 1, 1) 22%, rgb(253, 29, 29) 50%, rgb(61, 2, 2) 82%);
}

tr:nth-child(even) {
    background-color: #444;
}

tr:hover {
    background-color: #555;
}

/* Footer */
footer {
    text-align: center;
    padding: 10px;
    background-color: #444;
    margin-top: 20px;
    border-top: 2px solid red;
}
