.single-product-wrapper .scale-prices-table-wrapper {
    margin-top: 60px;
    margin-bottom: 60px;
}

.single-product-wrapper .scale-prices-table-title {
    font-weight: 300;
    text-transform: uppercase;
    font-size: 15px;
    margin-bottom: 12px;
}

.single-product-wrapper .scale-prices-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    line-height: 20px;
}

.single-product-wrapper .scale-prices-table thead th {
    text-align: left;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    color: var(--base-color);
    padding: 10px 12px;
    border-bottom: 2px solid var(--base-color);
}

.single-product-wrapper .scale-prices-table thead th:last-child {
    text-align: right;
}

.single-product-wrapper .scale-prices-table tbody tr {
    border-bottom: 1px solid #CCC;
    transition: background-color 0.2s;
    cursor: default;
}

.single-product-wrapper .scale-prices-table tbody tr:hover {
    background-color: #f5f5f5;
}

.single-product-wrapper .scale-prices-table tbody td {
    padding: 10px 12px;
    color: var(--base-color);
}

.single-product-wrapper .scale-prices-table tbody td:last-child {
    text-align: right;
}

.single-product-wrapper .scale-prices-table tbody tr.active,
.single-product-wrapper .scale-prices-table tbody tr.active:hover {
    background-color: var(--hint-color-light);
    font-weight: 600;
}

.single-product-wrapper .scale-prices-table tbody tr.active td:last-child {
    color: var(--hint-color);
    font-weight: 700;
}

.single-product-wrapper .scale-prices-table tbody tr.active td:last-child .woocommerce-Price-amount {
    color: var(--hint-color);
}

@media (max-width: 950px) {

    .single-product-wrapper .scale-prices-table tbody td,
    .single-product-wrapper .scale-prices-table thead th {
        padding: 10px 8px;
        font-size: 14px;
    }

    /* Disable hover on touch devices */
    .single-product-wrapper .scale-prices-table tbody tr:hover {
        background-color: transparent;
    }

    .single-product-wrapper .scale-prices-table tbody tr.active:hover {
        background-color: var(--hint-color-light);
    }
}
