/* assets/css/customer-styles.css */
.whsm-customer-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-family: Arial, sans-serif;
}

.whsm-customer-table th,
.whsm-customer-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #ddd;
}

.whsm-customer-table th {
    background-color: #f4f4f4;
    font-weight: bold;
}

.whsm-customer-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.whsm-customer-table tr:hover {
    background-color: #f1f1f1;
}

.whsm-customer-table .button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #0073aa;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    margin: 10px 0;
}