/* Frontend Styles for Product Table */

.wc-product-table-ultimate {
    margin: 20px 0;
    clear: both;
}

.wc-product-table-ultimate .table-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin: 0 0 15px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #ddd;
}

.table-wrapper {
    overflow-x: auto;
}

.product-info-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    margin: 15px 0;
}

.product-info-table tbody tr {
    border-bottom: 1px solid #e0e0e0;
}

.product-info-table tbody tr:last-child {
    border-bottom: none;
}

.product-info-table tbody tr:nth-child(even) {
    background: #f9f9f9;
}

.product-info-table tbody tr:hover {
    background: #f5f5f5;
}

.product-info-table td {
    padding: 12px 15px;
    vertical-align: middle;
    font-size: 14px;
}

.product-info-table .table-label {
    font-weight: 600;
    color: #333;
    width: 35%;
    border-right: 1px solid #e0e0e0;
}

.product-info-table .table-value {
    color: #555;
    width: 65%;
    line-height: 1.6;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .product-info-table td {
        padding: 10px 12px;
        display: block;
        width: 100% !important;
    }

    .product-info-table .table-label {
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
        padding-bottom: 8px;
        font-weight: 700;
    }

    .product-info-table .table-value {
        padding-top: 8px;
    }

    .product-info-table tbody tr {
        border-bottom: 2px solid #ddd;
        margin-bottom: 8px;
        display: block;
    }
}