body {
	font-family: Arial, sans-serif;
	background-color: rgb(178, 233, 255);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	height: 100%;
}

.container_index {
	display: block;
	background-color: rgb(125, 218, 255); /* Weißer Hintergrund für das Fenster */
	border-radius: 8px;
	padding: 20px;
	max-width: 500px;
	margin-left: 20px;
	margin-right: 20px;
	width: calc(100% - 20px);
	margin-top: 130px;
	/* 10px links und rechts auf Smartphones */
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.9);
	border: 2px solid #004b91;
}

h2 {
	text-align: center;
	margin-top: -5px;
}

p {
	margin-bottom: 10px;
}

form {
	display: flex;
	flex-direction: column;
}

label {
	margin-bottom: 5px;
}

input[type="text"],
input[type="date"],
input[type="time"],
textarea,
select {
	width: 100%;
	padding: 8px;
	margin-bottom: 15px;
	border: 1px solid #ccc;
	border-radius: 4px;
	display: block;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.9);
	border: 2px solid #004b91;
}
/*
button {
	width: 100%;
	padding: 10px;
	font-size: 16px;
	background-color: #4285f4;
	color: white;
	border: none;
	border-radius: 5px;
	cursor: pointer;
}
	*/
.error {
	color: red;
	font-weight: bold;
	font-size: 16px;
	margin-top: 10px;
	margin-bottom: 10px;
}

/* Button rechts ausrichten */
.button-container {
	display: flex;
	justify-content: center; /* Button wird nach rechts ausgerichtet */
	margin-top: 20px;
}

/* Header über gesamte Breite */

.header-index {
	position: sticky;
	top: 0;
	z-index: 1000; /* bleibt über dem Inhalt */
	width: 100%;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background-color: #007bff;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	box-sizing: border-box;
	font-size: 14px;
	overflow: hidden;
	color: white;
}

/* Icon-Container */
.header-left {
	padding-left: 5px;
}

.header-left a {
	display: flex;
	align-items: center;
	text-decoration: none;
}

.header-left img {
	width: 40px;
	height: 40px;
}

/* Titel zentriert */
.header-center {
	flex: 1;
	text-align: center;
	font-weight: bold;
	font-size: 14px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* Datum rechtsbündig mit 5px Abstand */
.header-right {
	padding-right: 10px;
	white-space: nowrap;
	font-size: 14px;
}

/* Mobile fix – kein Umbrechen, keine Höhenänderung */
@media (max-width: 600px) {
	.header-index {
		height: 60px;
		flex-wrap: nowrap;
	}

	.header-left,
	.header-right {
		flex-shrink: 0;
	}

	.header-center {
		padding: 0 10px;
	}
}
