
	#wbVideoHLS .video-container {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
        }

        #wbVideoHLS .video-wrapper {
            position: relative;
            cursor: pointer;
        }
        
        #wbVideoHLS .play-overlay {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80px;
            height: 80px;
            background-color: rgba(0, 0, 0, 0.7);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s;
        }

        #wbVideoHLS .video-wrapper:hover .play-overlay {
            opacity: 1;
        }
                
        /* Play icon (triangle) */
        #wbVideoHLS .play-overlay-icon {
            width: 0;
            height: 0;
            border-style: solid;
            border-width: 20px 0 20px 35px;
            border-color: transparent transparent transparent white;
            margin-left: 8px; /* Offset to center the triangle shape */
        }

        /* Pause icon (two bars) */
        #wbVideoHLS .play-overlay.paused .play-overlay-icon {
            width: 5px; /* Adjusted width */
            height: 40px;
            border-style: double;
            border-width: 0 0 0 25px; /* Adjusted border width */
            border-color: white;
            margin-left: 0; /* Remove margin for pause icon */
            transform: translateX(2px); /* Fine-tune horizontal centering */
        }


        #wbVideoHLS video {
            width: 100%;
            aspect-ratio: 16/9;
        }

        #wbVideoHLS .controls {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0, 0, 0, 0.7);
            padding: 10px;
            display: flex;
            flex-direction: column;
            gap: 10px;
            opacity: 0;
            transition: opacity 0.3s;
        }

        #wbVideoHLS .video-wrapper:hover .controls {
            opacity: 1;
        }

        #wbVideoHLS .progress-container {
            position: relative;
            width: 100%;
            height: 20px;
            cursor: pointer;
        }

        #wbVideoHLS .progress-bar {
            width: 100%;
            height: 8px;
            background: rgba(255, 255, 255, 0.3);
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
        }

        #wbVideoHLS .progress-fill {
            height: 100%;
            background: #f8f8ff;
            width: 0%;
        }

        #wbVideoHLS .thumbnail-preview {
            position: absolute;
            bottom: 100%;
            background: #000;
            border: 2px solid white;
            display: none;
        }

        #wbVideoHLS .control-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            color: white;
        }

        #wbVideoHLS .left-controls, .right-controls {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        #wbVideoHLS button {
            background: none;
            border: none;
            color: white;
            cursor: pointer;
            padding: 5px;
        }

        #wbVideoHLS button:hover {
            color: #ff0000;
        }

        #wbVideoHLS .quality-menu {
            position: absolute;
            bottom: 100%;
            right: 0;
            background: rgba(0, 0, 0, 0.9);
            padding: 10px;
            border-radius: 4px;
            display: none;
        }

        #wbVideoHLS .quality-menu.active {
            display: block;
        }

        #wbVideoHLS .quality-menu button {
            display: block;
            width: 100%;
            text-align: left;
            padding: 5px 10px;
        }

        #wbVideoHLS .volume-slider {
            width: 60px;
            height: 4px;
        }

        #wbVideoHLS .time-display {
            font-family: monospace;
            font-size: 12px;
        }

        #wbVideoHLS .control-button {
            width: 24px;  /* Fixed width for all control buttons */
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: monospace;  /* Use monospace font for consistent symbol widths */
            line-height: 1;
            padding: 0;
            margin: 0;
        }

        /* Ensure the volume slider maintains its position */
        #wbVideoHLS .left-controls {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        /* Modify existing button styles */
        #wbVideoHLS button {
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }

        #wbVideoHLS button:hover {
            color: #ff0000;
        }

        #thumbnailTime {
            color: white;
            font-size: 11px;
            text-align: center;
        }
	