/**
 * Public styles for Dynamic Pricing by AICOSO
 */

.dp-aicoso-bulk-pricing-table {
    margin: 20px 0;
    padding: 15px;
    background: #f7f7f7;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.dp-aicoso-bulk-pricing-table h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.2em;
    color: #333 !important;
}

.dp-aicoso-pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border: 1px solid #ddd;
}

.dp-aicoso-pricing-table thead {
    background: #2c3e50 !important;
}

.dp-aicoso-pricing-table th {
    background: #2c3e50 !important;
    color: #ffffff !important;
    padding: 12px 10px !important;
    text-align: left !important;
    font-weight: bold !important;
    border-bottom: 2px solid #34495e !important;
    font-size: 14px !important;
}

.dp-aicoso-pricing-table td {
    padding: 10px;
    border-bottom: 1px solid #eee;
    color: #333 !important;
    background: white !important;
}

.dp-aicoso-pricing-table tbody tr:hover td {
    background: #f5f5f5 !important;
}

.dp-aicoso-pricing-table tbody tr {
    transition: background-color 0.2s ease;
}

.dp-aicoso-pricing-table .quantity-range {
    font-weight: 600;
    color: #2c3e50 !important;
}

.dp-aicoso-pricing-table .price {
    font-weight: bold;
    color: #27ae60 !important;
}

.dp-aicoso-pricing-table .savings {
    color: #e74c3c !important;
    font-weight: 500;
}

.dp-aicoso-discount-badge {
    display: inline-block;
    padding: 2px 6px;
    background: #46b450;
    color: white;
    border-radius: 3px;
    font-size: 0.85em;
    font-weight: bold;
    margin-left: 5px;
}

.dp-aicoso-pricing-note {
    margin-top: 10px;
    font-style: italic;
    color: #666;
}

.dp-aicoso-original-price {
    text-decoration: line-through;
    color: #999;
    margin-right: 5px;
}

.dp-aicoso-sale-price {
    color: #46b450;
    font-weight: bold;
}

.dp-aicoso-countdown {
    display: inline-block;
    padding: 5px 10px;
    background: #ffb900;
    color: white;
    border-radius: 3px;
    font-size: 0.9em;
    margin: 10px 0;
}

.dp-aicoso-role-badge {
    display: inline-block;
    padding: 3px 8px;
    background: #0073aa;
    color: white;
    border-radius: 3px;
    font-size: 0.85em;
    margin-left: 5px;
}

/* Responsive design */
@media screen and (max-width: 768px) {
    .dp-aicoso-bulk-pricing-table {
        padding: 10px;
    }
    
    .dp-aicoso-pricing-table {
        font-size: 0.9em;
    }
    
    .dp-aicoso-pricing-table th,
    .dp-aicoso-pricing-table td {
        padding: 8px 5px;
    }
}