.player {
  background: #cdcecc ; 
  border-radius: 12px;
  width: 900px;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 20px auto;
}
.player-logo {
  width: 70px;
  height: 70px;
  border-radius: 8px;
  object-fit: contain;
  flex-shrink: 0;
}
.btn-playpause {
  width: 50px;
  height: 50px;
  background: white;
  border: 2px solid #367ea3;
  border-radius: 50%;
  color: #367ea3;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-playpause:hover {
  background: #367ea3;
  color: white;
}
.btn-stop {
  width: 35px;
  height: 35px;
  background: white;
  border: 2px solid #367ea3;
  border-radius: 4px;
  color: #367ea3;
  font-size: 18px;
  cursor: pointer;
  margin-left: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-stop:hover {
  background: #367ea3;
  color: white;
}
.volume-container {
  flex-grow: 1;
  display: flex;
  align-items: center;
  gap: 8px;
}
input[type="range"] {
  width: 100%;
  cursor: pointer;
}
.volume-icon {
  color: #367ea3;
  font-size: 20px;
}

.volume-container {
  display: flex;
  align-items: center;
  gap: 8px;
}

.volume-container i {
  color: #367ea3;
  font-size: 20px;
}

/* Estilo personalizado para el input range */
input[type="range"]#volume {
  -webkit-appearance: none;
  width: 120px;
  height: 6px;
  background: #ccc;
  border-radius: 3px;
  cursor: pointer;
  margin: 0;
}

input[type="range"]#volume::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  background: #367ea3;
  border-radius: 50%;
  cursor: pointer;
  border: none;
  margin-top: -6px;
}

input[type="range"]#volume::-moz-range-thumb {
  width: 18px;
  height: 18px;
  background: #367ea3;
  border-radius: 50%;
  cursor: pointer;
  border: none;
}
