/* Botones de acciones (verde y rojo) */
.botones-acciones {
    margin: 20px 0;
    display: flex;
    justify-content: center;
    gap: 10px;
}
.boton {
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.boton.verde {
    background-color: #28a745;
    color: white;
}
.boton.rojo {
    background-color: #dc3545;
    color: white;
}

/* Flechas para navegación */
.flechas {
    margin: 10px 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}
.boton.flecha {
    background-color: #17a2b8;
    color: white;
    font-size: 20px;
    width: 50px;
    height: 50px;
}

/* Botones en el panel superior */
.botones-superior {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
}
.boton.superior {
    background-color: #ffc107;
    color: black;
    font-size: 14px;
}


body {
    padding-top: 40px;
}



.margin-arriba {
    margin-top: 30px;
}



.fondo-verde-claro {
    background-color: #04fa25; /* Verde claro */
}


 /* Estilo opcional para botón activo */
 #conectar.active {
    background-color: #28a745;
    color: white;
  }







/* Estilos para los botones redondos dentro del panel */
.boton-esquina {
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Botón gris (esquina inferior izquierda del panel) */
.boton-esquina.gris {
    background-color: rgb(79, 79, 79);
    bottom: 10px;
    left: 10px;
}

/* Botón verde (esquina inferior derecha del panel) */
.boton-esquina.verde {
    background-color: rgb(79, 79, 79);
    bottom: 10px;
    right: 10px;
}

/* Colores activos */
.gris.activo {
    background-color: green;
}

.verde.activo {
    background-color: green;
}







/* Estilo base del menú */
#categoriaMenu {
    background-color: white;
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    width: 90%; /* Para ser responsivo */
  }
  
  /* Estilo de los elementos de la lista */
  #categoriaMenu .list-group-item {
    cursor: pointer;
    transition: background-color 0.2s ease;
  }
  
  #categoriaMenu .list-group-item:hover {
    background-color: #f0f0f0;
  }
  
  /* Responsive para pantallas pequeñas */
  @media (max-width: 576px) {
    #categoriaMenu {
      width: 95%; /* Ajusta el ancho al 95% del contenedor */
      left: 2.5%; /* Centra horizontalmente */
    }
  }
  
  /* Responsive para pantallas medianas */
  @media (min-width: 577px) and (max-width: 768px) {
    #categoriaMenu {
      max-width: 400px; /* Limita el ancho */
      width: 80%;
    }
  }
  
  /* Estilo del texto */
  #categoriaMenu p {
    font-size: 1rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
  }
  

















