table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #099999;
    text-align: center;
}

td {
    border: 1px solid #099999;
    padding: 10px;
    color: #00cccc;
}

img {
    width: 50px;
    height: 50px;
}

.tabla-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

@media (max-width: 600px) {
    table {
        display: block;
    }
    tr {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    td {
        flex: 0 0 50%; /* Hace que solo haya 2 columnas en pantallas pequeñas */
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
}
