.js-metal-table {
    width: 100%;
    border-collapse: collapse;
    font-family: Arial, sans-serif;
    color: #333;
    border: none;
}

.js-metal-table tr {
    border-bottom: 1px solid #e0e0e0;
}

.js-metal-table tr:nth-child(even) {
    background-color: #f5f5f5;
}

.js-metal-table tr:hover {
    background-color: #f0f0f0;
}

.js-metal-table td {
    padding: 12px 15px;
    border: none;
}

.js-metal-table td.price {
    text-align: right;
    font-weight: 600;
}

/* Specific colors for different metal tables if needed */
.js-gold-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.js-silver-table tr:nth-child(even) {
    background-color: #f8f8f8;
}

.js-platinum-table tr:nth-child(even) {
    background-color: #f7f7f7;
}

.js-palladium-table tr:nth-child(even) {
    background-color: #f6f6f6;
}