/*video {*/
/*	width: 100%;*/
/*	height: auto;*/
/*	border-style: none;*/
/*}*/

body {
	background-color: #333;
}

/*:where(audio, canvas, iframe, img, svg, video) {*/
/*	vertical-align: middle;*/
/*}*/

h1,
h2,
h3,
h4,
h5 {
	color: white;
	font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
		sans-serif;
	margin-left: 1rem;
}

h4 {
	margin-top: 2rem;
	margin-bottom: 0;
}

h5 {
	font-weight: 300;
	margin-top: 0.5rem;
}

.video-row {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}

.video-container {
	width: 100%;
	max-width: calc(50% - 10px);
	margin-bottom: 20px;
	box-sizing: border-box;
}

.video-container video {
	width: 100%;
	height: auto;
	object-fit: contain;
}

.video-title {
	margin-bottom: 5px;
}

@media (max-width: 767px) {
	.video-container {
		max-width: 100%;
	}
}

.video {
	width: 100%;
}

@media (max-width: 768px) {
	.video-row {
		flex-direction: column;
	}
}

.video-title {
	margin-bottom: 5px;
}

.video {
	width: 100%;
}

.stream-controls {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
}

.stream-controls > div {
	margin-right: 10px;
}

h4 {
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 20px;
	color: #fff;
}

.stream-controls {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	background-color: #333;
	padding: 10px;
}

.stream-controls > div {
	margin-right: 5px;
}

.tool {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

.tool button {
	font-family: Arial, sans-serif;
	background-color: #fff;
	color: #333;
	padding: 10px 20px;
	border: none;
	border-radius: 5px;
	font-weight: bold;
	cursor: pointer;
}

.tool button:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 5px;
	opacity: 0;
	transition: opacity 0.2s ease-in-out;
	z-index: -1;
}

.tool button:hover:before {
	opacity: 0.2;
}

.tool button:hover {
	background-color: #ccc;
	color: #fff;
}

.input-label {
	display: inline-block;
	font-weight: bold;
	font-size: 14px;
	font-weight: bold;
	margin-bottom: 20px;
	color: #fff;
	font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	margin-left: 1rem;
}

input[type="text"] {
	display: inline-block;
	padding: 10px;
	border: 1px solid #ccc;
	border-radius: 5px;
	font-size: 16px;
	margin-bottom: 20px;
	width: calc(50% - 1rem);
	box-sizing: border-box;
	margin-left: 1rem;
}


.input-with-copy {
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.copy-btn {
	font-family: Arial, sans-serif;
	background-color: #fff;
	color: #333;
	padding: 10px 20px;
	border: none;
	border-radius: 5px;
	font-weight: bold;
	cursor: pointer;
	margin-left: 10px;
	margin-bottom: 20px;
}

.copy-btn:hover {
	background-color: #ccc;
	color: #fff;
}