/* ========================================
   Quotation Modal Styles
   ======================================== */
.quotation-list {
    margin-bottom: 20px;
}

.quotation-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border-bottom: 1px solid #e0e0e0;
    transition: background 0.2s ease;
}

.quotation-item:hover {
    background: rgba(0, 102, 204, 0.02);
}

.quotation-item-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 102, 204, 0.1);
    border-radius: 8px;
    color: #0066cc;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.quotation-item-details {
    flex: 1;
}

.quotation-item-name {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

.quotation-item-sku {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 4px;
}

.quotation-item-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0066cc;
}

.quotation-item-actions {
    display: flex;
    gap: 8px;
}

.quotation-view-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 2px solid #0066cc;
    border-radius: 8px;
    color: #0066cc;
    transition: all 0.2s ease;
    cursor: pointer;
    text-decoration: none;
}

.quotation-view-btn:hover {
    background: #0066cc;
    color: white;
    transform: scale(1.05);
}

.quotation-footer {
    border-top: 2px solid #e0e0e0;
    padding-top: 20px;
    margin-top: 20px;
}

.quotation-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.quotation-total .total-price {
    color: #0066cc;
    font-size: 1.5rem;
}