.video-cover-editor {
	min-height: 200px;
	background: #f0f0f0;
	border: 2px dashed #ccc;
	border-radius: 4px;

	.video-cover-preview {
		position: relative;
		width: 100%;

		img {
			width: 100%;
			height: auto;
			display: block;
		}

		.video-overlay {
			position: absolute;
			bottom: 0;
			left: 0;
			right: 0;
			background: rgba(0, 0, 0, 0.7);
			color: white;
			padding: 10px;
			font-size: 14px;

			p {
				margin: 0;
			}
		}
	}

	.video-cover-placeholder {
		display: flex;
		align-items: center;
		justify-content: center;
		min-height: 200px;
		color: #666;
		font-size: 16px;
	}
}

.video-source-list {
	list-style: none;
	margin: 10px 0;
	padding: 0;

	.video-source-item {
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 8px 12px;
		background: #f5f5f5;
		border-radius: 4px;
		margin-bottom: 5px;

		.video-source-mime {
			font-family: monospace;
			font-size: 13px;
		}
	}
}
