/* Styles for Discount Money quantity swatches and pricing table */
.dm-quantity-swatches {
    margin-bottom: 1em;
}
.dm-quantity-swatches .dm-swatch {
    display: inline-block;
    margin-right: 5px;
    margin-bottom: 5px;
    padding: 8px 12px;
    background-color: #f3f4f6;
    border: 1px solid #ccc;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
}
.dm-quantity-swatches .dm-swatch:hover {
    background-color: #e2e6ea;
}
.dm-quantity-swatches .dm-swatch.active {
    background-color: #0073aa;
    color: #fff;
    border-color: #0073aa;
}
.dm-tier-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1em;
}
.dm-tier-table th, .dm-tier-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}
.dm-tier-table th {
    background-color: #f7f7f7;
}