
table.listing-results {
    font-size: 0.70rem;
    /*table-layout: fixed;*/
}

    table.listing-results td.best-value {
        color: #008207;
    }
    table.listing-results td.worst-value {
        color: #b80000;
    }

    table.listing-results thead {
        word-break: break-word;
    }

        table.listing-results thead tr th {
            padding: 2px;
            color: #000000;
            vertical-align: middle;
            text-align: center;
        }

            table.listing-results thead tr th i {
                margin: 0 2px 0 2px;
            }

    table.listing-results tbody {
        word-break: break-all;
    }

        table.listing-results tbody tr td {
            text-align: center;
            vertical-align: middle;
            color: #68696C;
            min-width: 120px;
        }

            table.listing-results tbody tr td i {
                margin: 0 5px 0 5px;
                font-size: 0.8rem;
            }

                table.listing-results tbody tr td i.warning {
                    color: #ff0000;
                }

            table.listing-results tbody tr td img {
                max-height: 50px;
                max-width: 80px;
                transition: transform .2s ease;
            }

            table.listing-results tbody tr td:nth-child(2) img:hover {
                transform: scale(4) translateX(15px);
            }

        table.listing-results tbody tr:first-child td:nth-child(2) img:hover {
            transform: scale(4) translate(15px, 15px);
        }

        table.listing-results tbody tr:last-child td:nth-child(2) img:hover {
            transform: scale(4) translate(15px, -15px);
        }

        table.listing-results tbody tr td img:hover {
            transform: scale(4);
        }

        table.listing-results tbody tr:first-child td img:hover {
            transform: scale(4) translateY(15px);
        }

        table.listing-results tbody tr:last-child td img:hover {
            transform: scale(4) translateY(-15px);
        }
