
#marketplaceTable {
    border-collapse: collapse;
    width: 100%;
}

#marketplaceTable th {
    text-align: center;
}

#marketplaceTable tr td {
    text-align: center;}

#marketplaceTable tr td:nth-of-type(1) {
    width: 40%;
}
#marketplaceTable tr td:nth-of-type(2) {
    width: 20%;
}
#marketplaceTable tr td:nth-of-type(3) {
    width: 20%;
    font-weight: bold;
}
#marketplaceTable tr td:nth-of-type(4) {
    width: 20%;
    font-weight: bold;
}

#marketplaceTable tr th {
    height: 20px;
    padding: 6px;
}

#marketplaceTable img.productPic {
    width: 240px;
}

.platformIcon {
    display: inline-block;
    text-align: center;
    padding: 6px 10px;
    width: 80px;
    height: 40px;
    margin: 8px;
    color: white;
    background-color: var(--mid-grey);
    border-radius: 15px;
}

.mktcheck {
    width: 25px;
}

td {
    padding: 8px;
}

td a {
    color: var(--dark-grey);
    text-decoration: none;
    transition: color 0.2s ease;
}

td a:hover, .resItem a:hover {
    color: var(--link-blue);
}

#marketplaceTable tr {
    border-top: 1px solid var(--light-grey);
}

#marketplaceTable tr:nth-of-type(even) {
    background-color: var(--table-light-grey);
}
#marketplaceTable tr:nth-of-type(odd) {
    background-color: var(--table-mid-grey);
}

#marketplaceTable tr:nth-of-type(1) {
    background-color: white !important;
    border-top: none;
}

/* RESPONSIVE */

@media screen and (max-width: 1000px) {
    td {
        font-size: 12px;
    }
    th {
        font-size: 14px;
    }
    #marketplaceTable img.productPic {
        width: 160px;
    }
}
@media screen and (max-width: 600px) {
    th {
        font-size: 10px;
    }
    #marketplaceTable img.productPic {
        width: 60px;
    }
    .platformIcon {
        font-size: 7px;
        width: 40px;
        height: 25px;
    }
}