.styled-table {
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 1em;
    font-family :Arial, Helvetica, sans-serif;
    min-width: 500px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

.styled-table thead tr {

    background-color: #5c6666;
    color: #000000;
    text-align: middle;

}
.styled-table th,
.styled-table td {
    padding: 12px 15px;
}

.styled-table tbody tr {
    border-bottom: 1px solid #5c6666;
}

.styled-table tbody tr:nth-of-type(even){
    background-color: #5c6666;
}

.styled-table {
    border-collapse: collapse;
    margin: 25px auto; /* centra la tabla */
    font-size: 0.9em;
    font-family: Arial, Helvetica, sans-serif;
    width: 90%; /* ahora ocupa el 90% del ancho de la pantalla */
    max-width: 900px; /* evita que se haga demasiado ancha en pantallas grandes */
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

.styled-table thead tr {
    background-color: #5c6666;
    color: #000000;
    text-align: center;
}

.styled-table th,
.styled-table td {
    padding: 10px;
    text-align: center;
}

/* Reducir el tamaño de las imágenes en la tabla */
.styled-table img {
    width: 100px;   /* puedes ajustar según el tamaño que desees */
    height: auto;
    object-fit: contain;
    border: 1px solid #ccc;
    padding: 2px;
    background-color: #fff;
}
