.visualizer-container {
  flex: 1;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.07);
  border-radius: 8px;
  padding: 0 10px;
  min-width: 200px;
  position: relative;
}

#waveCanvas {
  width: 100%;
  height: 100%;
}

/* NUEVOS ESTILOS PARA LOS BOTONES */
.visualizer-controls {
  position: absolute;
  top: 5px;
  right: 5px;
  display: flex;
  gap: 4px;
  background: rgba(0, 0, 0, 0.5);
  padding: 4px;
  border-radius: 6px;
  backdrop-filter: blur(10px);
  z-index: 10;
}

.viz-btn {
  width: 26px;
  height: 26px;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  cursor: pointer;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  opacity: 0.6;
}

.viz-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  opacity: 1;
  transform: scale(1.05);
}

.viz-btn.active {
  background: linear-gradient(135deg, #00c6ff, #0072ff);
  opacity: 1;
  box-shadow: 0 2px 8px rgba(0, 198, 255, 0.4);
}

.status-indicator {
  position: absolute;
  bottom: 8px;
  right: 25px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

#statusText {
  font-size: 11px;
  color: #6b7280;
  font-weight: 500;
}

#bitrate {
  font-size: 10px;
  color: #4b5563;
}

/* Responsive */
@media (max-width: 768px) {
  .radio-player {
    flex-direction: column;
    padding: 15px;
    gap: 15px;
    text-align: center;
  }
  
  .radio-info {
    align-items: center;
    min-width: auto;
  }
  
  .metadata {
    max-width: 90vw;
  }
  
  .visualizer-container {
    width: 100%;
    min-width: auto;
  }
  
  .status-indicator {
    position: static;
    align-items: center;
  }
  
  .visualizer-controls {
    top: auto;
    bottom: 5px;
    right: 5px;
  }
}