body {
	font-family: 'Arial', sans-serif;
	margin: 0;
	padding: 0;
	background-color: #f4f4f4;
}

header {
	background-color: #333;
	color: white;
	text-align: center;
	padding: 10px;
}

.container {
	max-width: 800px;
	margin: 20px auto;
	background-color: white;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.form-group {
	margin-bottom: 20px;
}

.video-form {
	max-width: 600px;
	margin: 0 auto;
	padding: 20px;
	border: 1px solid #ccc;
	border-radius: 8px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.return-button {
	display: flex;
	justify-content: center;
	align-items: center;
}

.edit-button {
	justify-content: center;
	align-items: center;
}

.thumbnail-container {
	max-width: 800px;
	margin: 20px auto;
	background-color: white;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.thumbnail-container2 {
	max-width: 800px;
	margin: 20px auto;
	background-color: white;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: space-around;
}

.thumbnail {
	width: 300px;
	margin-bottom: 20px;
}

/* Stil für das Videoelement */
.video {
    width: 640px; /* Breite des Videos */
    height: 320px; /* Höhe des Videos */
}
/* Stil für das Videoelement */
.video-thumbnail {
    width: 320px; /* Breite des Videos */
    height: 180px; /* Höhe des Videos */
}

.videoContainer {
  position: relative;
  width: 100%;
  height: 100%;
}

.video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain; /* Not necessary in Chrome */
}

.table {
  border-collapse: collapse;
  width: 100%;
}

.th, .td {
  padding: 8px;
  text-align: left;
  border-bottom: 1px solid #DDD;
}

.tr:hover {background-color: #D6EEEE;}


label {
	display: block;
	margin-bottom: 8px;
}

input, textarea {
	width: 100%;
	padding: 10px;
	border: 1px solid #ccc;
	border-radius: 4px;
	box-sizing: border-box;
}

button {
	background-color: #333;
	color: white;
	padding: 10px 20px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
}

button:hover {
	background-color: #555;
}

footer {
	text-align: center;
	margin-top: 20px;
	padding: 10px;
	background-color: #333;
	color: white;
}