/**
 * Frontend styles for Quantity Pricing Manager
 */

.qpm-pricing-table-container {
    margin: 15px 0;
}

.qpm-pricing-table {
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.qpm-pricing-table:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.qpm-pricing-table table tbody tr:hover {
    background-color: #f8f8f8 !important;
}

.qpm-pricing-table .woocommerce-Price-amount {
    font-weight: bold;
}

/* Animation for table update */
.qpm-pricing-table-updating {
    opacity: 0.5;
    pointer-events: none;
}

/* Responsive adjustments */
@media screen and (max-width: 480px) {
    .qpm-pricing-table {
        padding: 10px !important;
    }
    
    .qpm-pricing-table h4 {
        font-size: 14px;
    }
    
    .qpm-pricing-table table {
        font-size: 12px !important;
    }
}
