.elementor-17710 .elementor-element.elementor-element-79a10b1{--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-bf21d2c */.player {
  background: #fff;
  border: 1px solid #ddd;
  padding: 20px;
  margin: 20px auto;
  width: 350px;
  height: 400px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  
}

/* Control Button Styles */
.controls button {
  background: #ff9800;
  border: none;
  padding: 10px 20px;
  margin-top: 30px;
  margin-right: 5px;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.3s ease;
  
}

.controls button:hover {
  background: #e68900;
}

/* Progress Bar Styles */
.progress-bar {
  background: #e0e0e0;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  height: 10px;
  margin-top: 20px;
}

.progress {
  background: #ff9800;
  height: 10px;
  width: 0%;
}

/* Playlist Styles */
.playlist {
  margin-top: 20px;
  background: #f7f7f7;
  border: 1px solid #ddd;
  padding: 10px;
}

#playlist li {
  padding: 10px;
  background: #fff;
  border-bottom: 1px solid #ddd;
}

#playlist li:last-child {
  border-bottom: none;
}

#playlist li:hover, #playlist li.playing {
  background: #ff9800;
  color: #fff;
  cursor: pointer;
}

/* Responsive Media Queries */
@media (max-width: 600px) {
  .player {
      width: auto;
      padding: 10px;
  }

  .controls button {
      padding: 5px 10px;
      font-size: 14px;
  }
}/* End custom CSS */