/**
 * Additional Information Widget Styles
 * Styles for WooCommerce Additional Information widget/tab
 */

/* ========================================
   Remove All Borders from Additional Information Table
======================================== */
.woocommerce-product-attributes,
.woocommerce-product-attributes table,
.woocommerce-product-attributes table tbody,
.woocommerce-product-attributes table thead,
.woocommerce-product-attributes table tfoot,
.woocommerce-product-attributes table th,
.woocommerce-product-attributes table td {
    border: none !important;
    border-top: none !important;
    border-bottom: none !important;
    border-left: none !important;
    border-right: none !important;
    border-collapse: collapse;
}

.woocommerce-product-attributes-item {
    border-top: 1px solid #CCCCCC !important;
}

.woocommerce-product-attributes table tr:last-child {
    border-bottom: 1px solid #CCCCCC !important;
}

/* Remove borders from table cells specifically */
.woocommerce-product-attributes th,
.woocommerce-product-attributes td {
    border: 0 !important;
    border-width: 0 !important;
}

/* Remove any box-shadow or outline that might appear as borders */
.woocommerce-product-attributes table,
.woocommerce-product-attributes table tr,
.woocommerce-product-attributes table th,
.woocommerce-product-attributes table td {
    box-shadow: none !important;
    outline: none !important;
}

/* Ensure no border styling from parent elements */
.woocommerce-product-attributes {
    border: none !important;
}
