/* Left hand column (labels): not bold, no left border, light grey background, no right border (between columns) */
.woocommerce table.shop_attributes th,
table.shop_attributes th.woocommerce-product-attributes-item__label,
.elementor-widget-woocommerce-product-data-tabs .woocommerce-Tabs-panel--additional_information table.shop_attributes th {
    font-weight: normal !important;
    border-left: none !important;
    border-right: none !important; /* Removes border between columns */
    background-color: rgb(247, 247, 247) !important;
    text-align: left !important;
    width: 30% !important;
    padding-top: 5px !important;
    padding-bottom: 5px !important;
}

/* Right hand column (values): not italics, padding left, no right border, white background, no left border (between columns) */
.woocommerce table.shop_attributes td,
table.shop_attributes td.woocommerce-product-attributes-item__value,
.elementor-widget-woocommerce-product-data-tabs .woocommerce-Tabs-panel--additional_information table.shop_attributes td {
    font-style: normal !important;
    padding-left: 15px !important;
    border-right: none !important;
    border-left: none !important; /* Removes border between columns */
    background-color: #ffffff !important;
    padding-top: 5px !important;
    padding-bottom: 5px !important;
}

/* Row dividers and remove outer table borders */
.woocommerce table.shop_attributes,
table.shop_attributes,
.elementor-widget-woocommerce-product-data-tabs .woocommerce-Tabs-panel--additional_information table.shop_attributes {
    border-left: none !important;
    border-right: none !important;
    border-top: none !important;
    border-bottom: none !important;
}

/* Add thin grey divider between rows */
.woocommerce table.shop_attributes tr,
table.shop_attributes tr,
.elementor-widget-woocommerce-product-data-tabs .woocommerce-Tabs-panel--additional_information table.shop_attributes tr {
    border-bottom: 1px solid #e0e0e0 !important;
}

/* Ensure no double borders by removing top border from td/th */
.woocommerce table.shop_attributes td,
.woocommerce table.shop_attributes th,
table.shop_attributes td,
table.shop_attributes th {
    border-top: none !important;
    border-bottom: none !important;
}