    /* Adjusted CSS styles for the new structure */
    .player-buttons-container {
        margin-top: 0px;
      }
      
      .player-button {
        margin: 5px;
        padding: 5px 10px;
        font-size: 13px;
        font-weight: 300;
        color: #fff;
        background-color: #6c757d;
        border: none;
        border-radius: 6px;
        cursor: pointer;
        transition: background-color 0.3s ease;
      }
      
      .player-button.selected {
        background-color: #1683c6;
      }

    .player-container {
        height: 100%;
      }
    
      #player-logo {
        position: absolute;
        top: 10px;
        left: 10px;
        z-index: 1000;
        width: 100px;
        height: auto;
      }
    
      /* Main container */
      .container {
        display: flex;
        flex-wrap: wrap;
        margin: 20px 0;
      }
    
      /* Video player container */
      .video-container {
        flex: 1 1 100%;
        max-width: 100%;
        padding-right: 0;
      }
    
      /* Season and episode selection */
      .playlist-container {
        width: 350px;
        max-height: 370px;
        z-index: 9999;
        position: absolute;
        right: 0;
        top: 40px;
        background-color: rgba(0, 0, 0, 0.54);
        overflow-y: auto;
      }
    
      /* Iframe styles */
      #jiframe_objectss {
        width: 100%;
        height: 500px;
        border-radius: 8px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      }
    
      /* Season buttons */
      #season-select {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        margin-bottom: 10px;
        padding: 10px;
      }
    
      #season-select button {
        margin: 5px;
        padding: 10px;
        font-size: 14px;
        font-weight: bold;
        color: #fff;
        background-color: #6c757d;
        border: none;
        border-radius: 6px;
        cursor: pointer;
        transition: background-color 0.3s ease;
        flex-shrink: 0;
      }
    
      #season-select button:hover {
        background-color: #5a6268;
      }
    
      #season-select button.selected {
        background-color: #1683c6;
        color: #ffffff;
      }
    
      /* Episode container */
      #episode-select {
        padding: 0px;
      }
    
      .episode-container {
        display: flex;
        align-items: center;
        margin: 0px 0;
        border-left: 4px solid rgba(22, 131, 198, 0);
        padding: 20px 10px;
        border-radius: 0px;
        cursor: pointer;
        border-bottom: 1px solid rgba(255, 255, 255, 0.13);
      }
    
      .episode-container:hover {
        background-color: rgba(22, 131, 198, 0.58);
      }
    
      .episode-container.selected {
        background-color: rgba(22, 131, 198, 0.77);
        border-left: 4px solid #1683c6;
      }
    
      .episode-label {
        margin-right: 10px;
        padding: 5px 10px;
        font-size: 13px;
        font-weight: 300;
        font-family: BPG Mrgvlovani Caps, sans-serif;
        color: #fff;
        background-color: unset;
        border: none;
        border-radius: 6px;
        cursor: pointer;
        transition: background-color 0.3s ease;
      }
    
      /* Toggle playlist button */
      #toggle-playlist-btn {
        margin: 0;
        padding: 15px;
        width: 350px;
        font-size: 14px;
        font-weight: 300;
        color: #fff;
        background-color: #1683c6;
        border: none;
        font-family: BPG Mrgvlovani Caps, sans-serif;
        border-radius: 2px;
        cursor: pointer;
        transition: background-color 0.3s ease;
        position: absolute;
        top: 0;
        right: 0;
        z-index: 10000;
      }
    
      #toggle-playlist-btn:hover {
        background-color: #0e6aa4;
      }
    
      /* Layout */
      #tab11 {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
      }
    
      /* Small screens */
      @media (max-width: 768px) {
        .video-container {
          max-width: 100%;
        }
    
        #season-select button,
        .episode-label {
          width: auto;
          font-size: 12px;
          padding: 3px 10px;
        }
    
        #season-select {
          margin-bottom: 5px;
        }
    
        #tab11 {
          flex-direction: column;
        }
    
        .video-container,
        .playlist-container {
          width: 100%;
        }
    
        .playlist-container {
          width: 210px !important;
        }
    
        #toggle-playlist-btn {
          align-self: center;
        }
    
        #jiframe_objectss {
          height: 220px;
        }
    
        .playlist-container {
          max-height: 200px;
        }
    
        .episode-container {
          padding: 10px 5px;
        }
    
        #toggle-playlist-btn {
          font-size: 12px;
          font-weight: 300;
          padding: 13px 30px;
          width: 200px;
        }
    
        #player-logo {
          width: 50px;
        }

        .player-button {
            font-size: 10px;
            }

      }