/* Single product page — Manufacturer SKU / Condition details grid */

.single-product .mkd-child-product-stock-details {
    width: auto;
    /* extra bottom margin for spacing before the add-to-cart row */
    margin: 18px 0 28px;
    border-collapse: collapse;
    table-layout: auto;
    /* downsized ~40% from 22px */
    font-size: 13px;
    line-height: 1.3;
}

.single-product .mkd-child-product-stock-details th,
.single-product .mkd-child-product-stock-details td {
    padding: 6px 11px;
    text-align: left;
    border: 1px solid #313131;
}

.single-product .mkd-child-product-stock-details thead th {
    /* match the Add to Cart button colour */
    background-color: #313131;
    color: #fff;
    font-weight: 700;
    white-space: nowrap;
}

.single-product .mkd-child-product-stock-details tbody td {
    background-color: #fff;
    color: #000;
    font-weight: 500;
}

@media (max-width: 480px) {
    .single-product .mkd-child-product-stock-details {
        font-size: 11px;
    }

    .single-product .mkd-child-product-stock-details th,
    .single-product .mkd-child-product-stock-details td {
        padding: 5px 8px;
    }
}
