/* RoeschTabulador v1.2.0 - Descuentos por Producto Individual */

.roesch-wrapper {
    margin: 20px 0;
    display: flex;
    justify-content: center;
    width: 100%;
}

.roesch-area {
    width: 100%;
    max-width: 900px;
}

.roesch-card {
    background: #fff;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.roesch-title {
    margin: 0 0 16px;
    font-size: 20px;
    color: #007cba;
    font-weight: 600;
    text-align: center;
    border-bottom: 2px solid #007cba;
    padding-bottom: 10px;
}

.roesch-section {
    margin-bottom: 24px;
}

.roesch-section:last-child {
    margin-bottom: 0;
}

.roesch-subtitle {
    margin: 0 0 12px;
    font-size: 16px;
    color: #333;
    font-weight: 600;
}

.roesch-note {
    font-size: 13px;
    color: #666;
    margin: 0 0 10px;
    font-style: italic;
}

/* Tabla de productos */
.roesch-products-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    margin-bottom: 12px;
}

.roesch-products-table th,
.roesch-products-table td {
    padding: 10px 8px;
    border: 1px solid #ddd;
    text-align: left;
}

.roesch-products-table th {
    background: #f5f5f5;
    font-weight: 600;
    text-align: center;
}

.roesch-products-table td {
    vertical-align: middle;
}

.roesch-products-table tr.with-discount {
    background: #f0f8ff;
}

.roesch-products-table tr.with-discount:hover {
    background: #e6f3ff;
}

.roesch-products-table tr.without-discount {
    background: #fff9e6;
}

.roesch-products-table tr.without-discount:hover {
    background: #fff3cc;
}

.roesch-products-table .discount-pct {
    color: #28a745;
    font-weight: 600;
    text-align: center;
}

.roesch-products-table .savings {
    color: #28a745;
    font-weight: 600;
    text-align: right;
}

.roesch-products-table .missing-qty {
    color: #dc3545;
    font-size: 12px;
    text-align: center;
}

/* Tabla de niveles de descuento */
.roesch-table-container {
    overflow-x: auto;
    margin-top: 8px;
}

.roesch-tiers-table {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    border-collapse: collapse;
    font-size: 14px;
}

.roesch-tiers-table th,
.roesch-tiers-table td {
    padding: 8px 12px;
    border: 1px solid #ddd;
    text-align: center;
}

.roesch-tiers-table th {
    background: #007cba;
    color: #fff;
    font-weight: 600;
}

.roesch-tiers-table tr:nth-child(even) {
    background: #f9f9f9;
}

.roesch-tiers-table tr:hover {
    background: #f0f8ff;
}

.roesch-tiers-table .discount-value {
    color: #28a745;
    font-weight: 600;
    font-size: 15px;
}

/* Responsive */
@media (max-width: 768px) {
    .roesch-card {
        padding: 16px;
    }
    
    .roesch-products-table {
        font-size: 12px;
    }
    
    .roesch-products-table th,
    .roesch-products-table td {
        padding: 6px 4px;
    }
    
    .roesch-title {
        font-size: 18px;
    }
    
    .roesch-subtitle {
        font-size: 15px;
    }
    
    .roesch-tiers-table {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .roesch-products-table {
        font-size: 11px;
    }
    
    .roesch-products-table th,
    .roesch-products-table td {
        padding: 4px 2px;
    }
    
    .roesch-title {
        font-size: 16px;
    }
}