.elementor-87 .elementor-element.elementor-element-202a21f{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-727846f */.course-player {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 40px;
  }

  .player-main {
    flex: 3;
  }

  .player-main video {
    width: 100%;
    display: block;
  }

  .lesson-title {
    margin-top: 10px;
    font-size: 18px;
    font-weight: 600;
  }

  .player-playlist {
    flex: 1.3;
    background: #111;
    color: #fff;
    padding: 15px;
    max-height: 520px;
    overflow-y: auto;
  }

  .playlist-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 14px;
  }

  .playlist-header h3 {
    margin: 0;
    font-size: 16px;
  }

  .player-playlist ul {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
  }

  .player-playlist li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    cursor: pointer;
    font-size: 14px;
    border-bottom: 1px solid #333;
    transition: background 0.2s ease;
  }

  .player-playlist li:hover {
    background: #1f1f1f;
  }

  .player-playlist li.active {
    background: #1e88ff;
  }

  .lesson-number {
    width: 20px;
    text-align: center;
    opacity: 0.8;
    font-size: 13px;
  }

  .lesson-info {
    display: flex;
    flex-direction: column;
  }

  .lesson-name {
    font-weight: 500;
  }

  .next-module-btn {
    display: block;
    text-align: center;
    width: 100%;
    margin-top: 10px;
    border: none;
    padding: 10px 15px;
    background: #1e88ff;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
  }

  .next-module-btn:hover {
    opacity: 0.9;
  }

  /* Responsive: stack on mobile */
  @media (max-width: 900px) {
    .course-player {
      flex-direction: column;
    }

    .player-playlist {
      width: 100%;
      max-height: none;
    }
  }/* End custom CSS */