body {
	font-family: Arial, sans-serif;
	margin: 0;
	padding: 0;
	background-color: #222;
	color: white;
	overflow-y: scroll;
}

header, nav, main, footer {
	padding: 20px;
}

nav {
	background-color: #444;
}

header {
	background-color: #333;
	color: white;
	text-align: center;
}

INPUT[type="submit"]:hover, INPUT[type="button"]:hover {
	cursor: pointer;
}

.avatar {
	border-radius: 50%;
	width: 32px;
	height: 32px;
	vertical-align: middle;
	border: #fff solid 1px;
	margin: 5px;
}

.big {
	font-size:32px;
}

.spendenpartner IMG {
	width: 500px;
	height: 140px;
	margin-bottom: 40px;
}

.giveaway {
	display: inline-block;
}

.giveaway SPAN {
	display: block;
    font-size: 34px;
}

.giveaway IMG {
	width: 370px;
    margin: 0px 10px 40px 10px;
}

nav ul {
	list-style: none;
	padding: 0;
	display: flex;
	justify-content: center;
	background-color: #444;
	white-space: nowrap; 
}

nav li {
	margin: 0 15px;
}

nav a {
	color: white;
	text-decoration: none;
	font-size: 16px; 
}

/* Anpassung für kleinere Bildschirme */
@media (max-width: 768px) {
	nav a {
		font-size: 14px; 
	}
}

main {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}

.container {
	max-width: 800px;
	margin: 0 auto;
	padding: 20px;
}
		
.hero {
	background-size: cover;
	background-position: center;
	color: white;
	text-align: center;
}

.hero h1 {
	font-size: 3rem;
	margin-top: 0px;
	margin-bottom: 1rem;
}

.about {
	text-align: center;
	/*margin-bottom: 60px;*/
}
		
.logo {
	text-align: center;
	max-width: 100%;
	height: auto;
}

.logo2 {
	text-align: center;
	max-width: 100%;
	height: auto;
}

/* Zusätzliche Stile für den Footer */
footer {
	background-color: #333;
	color: white;
	text-align: center;
	padding: 5px 0;
	position: fixed;
	bottom: 0;
	width: 100%;
}


/* Stile für die Tabelle */

.table-container {
	max-width: 100%;
	border: none;
	padding-bottom: 70px;
	display: flex;
}

table {
	width: 100%;
	border-collapse: collapse;
	margin: 0 auto;
	margin-bottom: 20px;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 1.5);
	border: 2px solid gray;
	transition: border-color 0.3s, box-shadow 0.3s;
}

table, th, td {
	border: none;
}

tr {
	font-size: 13px
}

th, td {
	padding: 10px;
	text-align: left;
}

th, .current {
	background-color: #0052ff;
	color: white;
	border-radius: 0;
}

.day {
	background-color: #11a80d;
	color: white;
	border-radius: 0;
	font-size: 13px;
}

.bold {
	font-weight:bold;
}

/* Für gerade Zeilen */
.even-row {
	background-color: #222;
}

/* Für ungerade Zeilen */
.odd-row {
	background-color: #333; 
}

tbody tr.day {
	background-color: #11a80d !important;
}

table:hover {
	border-color: #ffcc00;
	box-shadow: 0px 0px 10px rgba(245, 245, 245, 1.7);
}

/* Media Queries für Responsive Design */
@media only screen and (max-width: 768px) {
	header {
		padding: 10px;
	}

	nav {
		overflow-x: auto; 
	}

	nav ul {
		justify-content: space-between;
		display: flex;
		flex-wrap: nowrap; 
	}

	nav li {
		margin: 0;
		padding: 0 10px;
	}

	main {
		padding: 10px;
	}

	.hero h1 {
		font-size: 2rem;
		margin-top: 0px;
	}

	.about, .speakers {
		padding: 20px;
	}

	footer {
		padding: 5px;
	}

	form {
		padding: 10px;
	}

	.table-container {
		overflow-y: auto;
		border: none; 
		border-radius: 10px; 
		box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5); 
		margin: 0 auto;
		transition: border-radius 0.3s, box-shadow 0.3s;
	}

	table {
		font-size: 14px; 
		border: 3px;
	}
}

FORM {
	/*margin-bottom: 20px;*/
}

.red {
	color:red;
}

INPUT, TEXTAREA {
	font-family: Arial, sans-serif;
	background-color: #222;
	border: #999 solid 1px;
	border-radius: 5px;
	padding: 5px;
	color: #fff;
}

INPUT[type="number"] {
	width: 50px;
}

.donation_form {
	width: 380px;
	margin: auto;
	text-align: center;
}

.donation_form INPUT, .donation_form TEXTAREA {
	width: 100%;
}

.donation_form TEXTAREA {
	height: 80px;
}

.donate_button {
	background: url(donate.png);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	border: none;
	padding: 0px;
	margin: 10px;
	width: 150px;
	height: 52px;
}

.donate_button:hover {
	cursor: pointer;
}