.elementor-14253 .elementor-element.elementor-element-d5e96f4{--display:flex;}/* Start custom CSS for html, class: .elementor-element-28f0b0b */.player {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 300px;
  background: rgba(0,0,0,0.8);
  color: #fff;
  padding: 12px;
  border-radius: 20px;
  font-family: sans-serif;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
  z-index: 9999;
}

.player .controls {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.player .btn {
  background: #fff;
  color: #000;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  cursor: pointer;
  font-size: 16px;
  transition: transform 0.2s;
}

.player .btn:hover {
  transform: scale(1.2);
}

.player .title {
  flex: 1;
  text-align: center;
  font-weight: bold;
  font-size: 14px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.progress, .volume {
  width: 100%;
  cursor: pointer;
  margin-top: 4px;
  accent-color: #ff5c5c; /* couleur de la barre */
}

.playlist {
  max-height: 120px;
  overflow-y: auto;
  margin-top: 8px;
  padding-left: 0;
  list-style: none;
}

.playlist li {
  padding: 4px 8px;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.2s;
}

.playlist li:hover {
  background: rgba(255,255,255,0.1);
}

.playlist li.active {
  font-weight: bold;
  background: rgba(255,255,255,0.2);
}/* End custom CSS */