.hls-video-container {
    margin: 15px auto;
    max-width: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hls-language-selector {
    margin-top: 8px;
    width: 100%;
    max-width: 200px;
    text-align: center;
}

.hls-language-select {
    padding: 6px 10px;
    border-radius: 4px;
    border: 1px solid #ddd;
    background-color: #f8f8f8;
    color: #333;
    font-size: 14px;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hls-language-select:hover {
    border-color: #aaa;
    background-color: #fff;
}

.hls-language-select:focus {
    outline: none;
    border-color: #4d90fe;
    box-shadow: 0 0 3px rgba(77, 144, 254, 0.5);
}

video {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}