/* Panel de selección */
.scene-panel {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 100%;
  max-width: 300px;
  max-height: 400px;
  overflow-y: auto;
  background: linear-gradient(145deg, #ffffff, #f0f0f0);
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  padding: 20px;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}

.scene-panel.show {
  opacity: 1;
  transform: translateY(0);
}

/* Título del panel */
.scene-panel-title {
  margin: 0;
  padding-bottom: 15px;
  font-size: 18px;
  font-weight: bold;
  color: #333;
  border-bottom: 2px solid #ddd;
  text-align: center;
}

/* Lista de destinos */
.scene-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px; /* Espaciado uniforme entre botones */
}

/* Botones de las escenas */
.scene-btn {
  background: linear-gradient(145deg, #e0e0e0, #ffffff);
  color: #333;
  border: 1px #ccc;
  padding: 10px;
  margin-bottom: 5px;
  height: 40px; /* Tamaño uniforme */
  width: 100%;
  border-radius: 12px;
  text-align: center;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  align-items: center; /* Centrar verticalmente */
  justify-content: center; /* Centrar horizontalmente */
}

.scene-btn:hover {
  background: #4c9aff;
  color: #fff;
  border-color: #4c9aff;
  box-shadow: 0 8px 15px rgba(76, 154, 255, 0.3);
  transform: translateY(-2px);
}

.scene-btn:active {
  background: #337ab7;
  border-color: #2e6da4;
  transform: translateY(2px);
}

/* Boton de volver */
.scene-btn-volver {
  background: linear-gradient(145deg, #fa6d6d, #ff0000);
  color: #ffffff;
  border: 1px #ccc;
  padding: 10px;
  margin-bottom: 5px;
  height: 40px; /* Tamaño uniforme */
  width: 100%;
  border-radius: 12px;
  text-align: center;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  align-items: center; /* Centrar verticalmente */
  justify-content: center; /* Centrar horizontalmente */
}

.scene-btn-volver:hover {
  background: #ff9d9d;
  color: #fff;
  border-color: #ff9d9d;
  box-shadow: 0 8px 15px rgba(76, 154, 255, 0.3);
  transform: translateY(-2px);
}