/* Cotizacion CSS */
.cotizacion-container {
    padding: 20px;
    background-color: #f8f9fa;
}

.cotizacion-header {
    margin-bottom: 20px;
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.cotizacion-selected {
    margin-bottom: 20px;
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.selected-products-list {
    margin-top: 15px;
}

.selected-product-item {
    border-bottom: 1px solid #eee;
    padding: 12px 0;
}

.selected-product-item:last-child {
    border-bottom: none;
}

.product-price-display {
    font-weight: bold;
    color: #28a745;
    min-width: 80px;
    text-align: right;
}

.cotizacion-products {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.product-item {
    border-bottom: 1px solid #eee;
    padding: 10px 0;
}

.product-item:last-child {
    border-bottom: none;
}

.product-checkbox {
    margin-right: 10px;
}

.product-name {
    font-weight: 500;
}

.product-price {
    float: right;
    font-weight: bold;
}

.cotizacion-total {
    margin-top: 20px;
    text-align: right;
    font-size: 1.1em;
    font-weight: bold;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 5px;
}

.cotizacion-actions {
    margin-top: 20px;
    text-align: right;
    padding: 20px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.warning-message {
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeeba;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    display: none;
}

/* Search and Pagination */
#search-input {
    min-width: 250px;
}

#pagination-container {
    margin-top: 15px;
}

.pagination {
    margin-bottom: 0;
}

#loading-indicator {
    color: #6c757d;
}

/* Print Styles */
@media print {
    .no-print {
        display: none !important;
    }

    .cotizacion-container {
        background-color: #fff;
    }

    .cotizacion-header,
    .cotizacion-products,
    .cotizacion-selected {
        box-shadow: none;
    }

    #pagination-container,
    #search-input,
    #btn-search,
    #loading-indicator,
    #product-list-container {
        display: none !important;
    }

    .remove-product {
        display: none !important;
    }
}