/* Estilo Base */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Contenedor Principal */
.simLED_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    gap: 20px;
    max-width: 100%;
    margin: 0 auto;
}

/* Secci¨®n Superior */
.simLED_top-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    width: 100%;
}

/* Contenedor General */
.simLED_contenedor {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: calc(33.333% - 20px);
    min-width: 300px;
    box-sizing: border-box;
}

/* Contenedor de Ancho Completo */
.simLED_full-width {
    width: calc(100% - 40px);
}

/* T¨ªtulos */
h2 {
    margin-top: 0;
    text-align: center;
}

/* Elementos de Formulario */
select, input[type="text"], input[type="number"] {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    border-radius: 4px;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

/* Asegurar que los elementos no se desborden */
select {
    max-width: 100%;
}

input[type="text"], input[type="number"] {
    max-width: 100%;
}

/* Tabla */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

/* Celdas de Tabla */
th, td {
    padding: 10px;
    text-align: center;
    border-bottom: 1px solid #ddd;
}

/* Encabezados de Tabla */
th {
    background-color: #6aca19;
    color: white;
}

/* Filas de Tabla */
td {
    background-color: #f8f8f8;
}

/* Contenedor de Tabla */
.simLED_table-container {
    overflow-x: auto;
}

/* Clase Destacada */
.simLED_destacado {
    background-color: #dff0d8 !important; /* Verde Suave */
    font-weight: bold;
    border: 2px solid #4CAF50; /* Borde Verde */
    border-radius: 5px; /* Esquinas Redondeadas */
    box-shadow: 0px 0px 5px rgba(76, 175, 80, 0.5); /* Sombra Suave */
}

/* Media Queries para Responsividad */
@media (max-width: 1200px) {
    .simLED_contenedor {
        width: calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .simLED_contenedor {
        width: 100%;
    }
}
