body {
	font-family: Arial, sans-serif;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	margin: 0;
	background-color: black;
	color: white;
}

header {
	text-align: center;
	margin-bottom: 20px;
	position: relative;
}

header img {
	vertical-align: middle;
	height: 130px;
}

header h1 {
	display: inline;
	font-size: 4em;
	margin: 0 10px;
	vertical-align: middle;
}

header::after {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 5px; /* Tloušťka žluté čáry */
	background-color: yellow;
}

main {
	display: flex;
	justify-content: space-between;
	flex-grow: 1;
}

.table-container {
	width: 50%;
	padding: 10px;
	text-align: center;
}

table {
	width: 100%;
	border-collapse: collapse;
}

table, th, td {
	border: 1px solid white;
}

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

.time-container {
	width: 50%;
	text-align: right;
	font-size: 10em;
	font-weight: bold;
	display: flex;
	align-items: center;
	justify-content: center;
}

footer {
	padding: 20px;
	background-color: black;
	position: relative; /* Nutné pro umístění žluté čáry */
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 200px; /* Výška patičky */
}

footer img {
	max-height:180px; /* Výška log */
	min-height: 80px;
	margin: 10px; /* Odstup mezi logy */
	z-index: 2; /* Z-index pro obrázky v patičce */
	padding: 0 5px;
	background-color: black;
}

.footer-time {
	font-size: 13em;
	font-weight: bold;
	margin-right: 20px;
	z-index: 2; /* Z-index pro aktuální čas v patičce */
	background-color: black;
	padding: 0 2px;
}

footer::after {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	bottom: 50%; /* Polovina výšky patičky */
	width: 100%;
	height: 5px; /* Tloušťka žluté čáry */
	background-color: yellow;
}

.table-container img {
	background-color: white;
	padding: 5px;
	max-height: 670px;
}

.set-times-container {
	padding: 10px;
}

table.set-times td {
	text-align: center;
}


table.set-times td input {
	font-size: 25px;
	width: 100%;
	padding: 5px;
	box-sizing: border-box;
}

table.set-times td textarea {
	font-size: 15px;
	width: 100%;
	box-sizing: border-box;
}

.flash.success {
	padding: 15px;
	border: 1px solid green;
	background-color: mediumseagreen;
	color: black;
	font-size: 25px;
	margin: 10px;
}
table.times {
	border: 0;
}
table.times tr td {
	width: 50%;
	font-size: 60px;
	border: 0;
	font-weight: bold;
}

table.times tr td:first-child {
	border-right: 1px dashed white;
	border-bottom: 1px dashed white;
	text-align: right;
}

table.times tr td:last-child {
	border-left: 1px dashed white;
	border-bottom: 1px dashed white;
	text-align: left;
}

table.times tr:last-child td {
	border: 0;
	text-align: center;
	font-size: 70px;
}



