.video-container {
    display: flex;
    width: 100%;
}

.video-container .left-bar {
    flex: 1;
    max-width: 33%;
    padding: 20px;
    box-sizing: border-box;
}

.video-container .right-bar {
    flex: 2;
    max-width: 67%;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#language-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
    background-color: #ffffff;
    color: #000000;
	margin-top: 5px;
    border: 1px solid #ccc;
    width: 200px; /* Adjust the width as needed */
    cursor: pointer;
    position: relative;
}

#language-list li {
    display: none; /* Hide list items by default */
    padding: 5px 10px;
    background-color: #ffffff;
    color: #000000;
    cursor: pointer;
    width: 100%;
}

#language-list.open li {
	display: flex;
	align-items: center;
	align-content: center;
	text-align: center;
}

#language-list.open li span.flag {
	margin-right: 6px;
}

#language-list.open li span.lang-text {
	flex: 1;
}

#language-list .toggle {
    padding: 5px 10px;
    text-align: right;
    border-bottom: 1px solid #CCCCCC;
    background-color: #FFFFFF;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

#language-list .toggle::after {
	content: '▼';
	float: right;
}

#language-list.open .toggle {
	font-size: 15px;
}

#language-list.open .toggle::after {
    content: '▲'; /* Change the arrow direction when open */
}

#language-list li:hover {
    background-color: #f0f0f0; /* Slightly darker background on hover */
}

.video-container select {
    width: 100%;
    padding: 10px;
    margin-top: 20px;
    background-color: #ffffff; /* White background */
    color: #000000; /* Black text */
    border: 1px solid #ccc; /* Light grey border */
    border-radius: 4px; /* Rounded corners */
    appearance: none; /* Remove default arrow */
    -webkit-appearance: none; /* Remove default arrow in Safari */
    -moz-appearance: none; /* Remove default arrow in Firefox */
    position: relative;
    padding-right: 30px; /* Space for custom arrow */
}

.video-container select::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 10px;
    width: 0;
    height: 0;
    pointer-events: none;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #000000; /* Black arrow */
    transform: translateY(-50%);
}

.video-container .video-title,
.video-container .video-subtitle {
    margin: 10px 0;
}

.video-container .video-title {
    color: #FFF;
    font-size: 1.5em;
    font-weight: bold;
}

.video-container .video-subtitle {
    font-size: 1em;
    color: #FFF;
}

#video-player {
	height: 100%;
	width: 100%;
}

.mejs__playpause-button button {
    background: none !important; /* Ensure no background conflicts */
    font-size: 0; /* Hide text, if any */
    width: 50px;
    height: 50px;
    display: inline-block;
    background-image: url('mejs-controls.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}