.vp-844562d3-container {
	display: flex;
	gap: 20px;
	width: 100%;
	font-family: Roboto, Arial, sans-serif;
	flex-wrap: wrap;
}

.vp-844562d3-player {
	flex: 1;
	min-width: 300px;
}

.vp-844562d3-video-wrapper {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
	height: 0;
	overflow: hidden;
	background: #000;
	border-radius: 12px;
}

.vp-844562d3-video-wrapper iframe,
.vp-844562d3-video-wrapper video,
.vp-844562d3-video-wrapper > div {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
    transition: opacity 0.3s;
}

.vp-844562d3-end-screen {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.9);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    padding: 20px;
}

.vp-844562d3-end-screen h4 {
    margin: 0 0 20px 0;
    font-size: 24px;
    font-weight: 500;
}

.vp-844562d3-next-videos {
    display: flex;
    gap: 15px;
    max-width: 90%;
    justify-content: center;
    flex-wrap: wrap;
}

.vp-844562d3-next-thumb {
    flex: 1;
    min-width: 120px;
    max-width: 250px;
    cursor: pointer;
    transition: transform 0.2s;
    text-align: center;
}

.vp-844562d3-next-thumb:hover {
    transform: scale(1.05);
}

.vp-844562d3-next-thumb img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

.vp-844562d3-next-thumb span {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 13px;
    line-height: 1.4;
}

.vp-844562d3-player-actions {
	display: flex;
	gap: 10px;
	margin-top: 15px;
	padding: 0 10px;
	align-items: center;
	flex-wrap: wrap;
}

.vp-844562d3-player-nav {
	display: flex;
	gap: 10px;
	margin-left: auto;
}

.vp-844562d3-btn-action {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: #f2f2f2;
	border: none;
	border-radius: 18px;
	padding: 8px 16px;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	color: #0f0f0f;
	transition: background 0.2s;
}

.vp-844562d3-btn-action:hover {
	background: #e5e5e5;
}

.vp-844562d3-list-wrapper {
	width: 380px;
	flex-shrink: 0;
	border: 1px solid #e5e5e5;
	border-radius: 12px;
	overflow: hidden;
	background: #fff;
	display: flex;
	flex-direction: column;
}

.vp-844562d3-header {
	padding: 16px;
	position: relative;
	border-bottom: 1px solid #e5e5e5;
}

.vp-844562d3-header h3 {
	margin: 0 0 4px 0;
	font-size: 20px;
	font-weight: 600;
	color: #0f0f0f;
}

.vp-844562d3-header p {
	margin: 0;
	font-size: 12px;
	color: #606060;
}

.vp-844562d3-close-btn {
	position: absolute;
	top: 16px;
	right: 16px;
	background: none;
	border: none;
	cursor: pointer;
	color: #0f0f0f;
	padding: 4px;
}

.vp-844562d3-list {
	display: flex;
	flex-direction: column;
	overflow-y: auto;
	flex-grow: 1;
	position: relative;
}

/* Scrollbar */
.vp-844562d3-list::-webkit-scrollbar {
	width: 8px;
}
.vp-844562d3-list::-webkit-scrollbar-track {
	background: transparent; 
}
.vp-844562d3-list::-webkit-scrollbar-thumb {
	background: #717171; 
	border-radius: 4px;
}
.vp-844562d3-list::-webkit-scrollbar-thumb:hover {
	background: #a8a8a8; 
}

.vp-844562d3-item {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	padding: 12px 16px;
	cursor: pointer;
	transition: background-color 0.2s;
	position: relative;
}

.vp-844562d3-item:hover {
	background-color: #f2f2f2;
}

.vp-844562d3-item.active {
	background-color: #f0ebf3; /* Slight tint for active */
}

.vp-844562d3-item-playing-icon {
	display: none;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 100%;
	position: absolute;
	left: -2px;
	top: 0;
	color: #0f0f0f;
}

.vp-844562d3-item.active .vp-844562d3-item-playing-icon {
	display: flex;
}

.vp-844562d3-item-thumb {
	position: relative;
	width: 120px;
	flex-shrink: 0;
	border-radius: 8px;
	overflow: hidden;
	aspect-ratio: 16 / 9;
	background: #ddd;
	margin-left: 12px; /* Space for playing icon */
}

.vp-844562d3-item-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.vp-844562d3-item-duration {
	position: absolute;
	bottom: 4px;
	right: 4px;
	background: rgba(0,0,0,0.8);
	color: #fff;
	font-size: 12px;
	font-weight: 500;
	padding: 3px 4px;
	border-radius: 4px;
	line-height: 1;
}

.vp-844562d3-item-content {
	flex: 1;
	min-width: 0;
	padding-right: 24px; /* Space for dots */
}

.vp-844562d3-item-title {
	margin: 0 0 4px 0;
	font-size: 14px;
	line-height: 1.4;
	font-weight: 500;
	color: #0f0f0f;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.vp-844562d3-item-meta {
	margin: 0;
	font-size: 12px;
	color: #606060;
	line-height: 1.2;
}

.vp-844562d3-item-options {
	position: absolute;
	right: 12px;
	top: 12px;
}

.vp-844562d3-dots-btn {
	background: none;
	border: none;
	cursor: pointer;
	color: #0f0f0f;
	padding: 4px;
	opacity: 1; /* Made visible always as requested */
	transition: opacity 0.2s;
}

.vp-844562d3-options-dropdown {
	position: absolute;
	right: 0;
	top: 100%;
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
	padding: 8px 0;
	display: none;
	z-index: 10;
	min-width: 150px;
}

.vp-844562d3-options-dropdown.show {
	display: block;
}

.vp-844562d3-options-dropdown button {
	display: flex;
	align-items: center;
	gap: 12px;
	width: 100%;
	padding: 8px 16px;
	background: none;
	border: none;
	text-align: left;
	font-size: 14px;
	color: #0f0f0f;
	cursor: pointer;
}

.vp-844562d3-options-dropdown button:hover {
	background: #f2f2f2;
}

.vp-844562d3-scroll-down,
.vp-844562d3-scroll-up {
	text-align: center;
	padding: 10px;
	cursor: pointer;
	color: #606060;
	background: #fff;
	display: flex;
	justify-content: center;
}

.vp-844562d3-scroll-down {
	border-top: 1px solid #e5e5e5;
}

.vp-844562d3-scroll-up {
	border-bottom: 1px solid #e5e5e5;
}

.vp-844562d3-scroll-down:hover,
.vp-844562d3-scroll-up:hover {
	background: #f9f9f9;
}

/* Modal styles */
.vp-844562d3-modal-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,0.6);
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 9999;
}

.vp-844562d3-modal-overlay.show {
	display: flex;
}

.vp-844562d3-modal {
	background: #fff;
	padding: 30px;
	border-radius: 12px;
	width: 90%;
	max-width: 400px;
	position: relative;
	box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.vp-844562d3-modal h4 {
	margin: 0 0 20px 0;
	font-size: 18px;
}

.vp-844562d3-modal-close {
	position: absolute;
	top: 15px;
	right: 15px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 4px;
}

@media (max-width: 900px) {
	.vp-844562d3-list-wrapper {
		width: 100% !important;
		max-width: 100% !important;
	}
	.vp-844562d3-player {
		max-width: 100% !important;
		flex-basis: 100% !important;
	}
}